blob: 1f919d1336f5db1c88defe7c43dcac1318bc3d73 [file] [log] [blame]
Harry Liebel1bc9e1f2013-12-12 16:46:30 +00001/*
Govindraj Rajaeee28e72023-08-01 15:52:40 -05002 * Copyright (c) 2013-2023, Arm Limited and Contributors. All rights reserved.
Harry Liebel1bc9e1f2013-12-12 16:46:30 +00003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Harry Liebel1bc9e1f2013-12-12 16:46:30 +00005 */
6
7#include <stdio.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00008
Yann Gautiera55b9142023-01-05 09:50:11 +01009#pragma weak putchar
10int putchar(int c)
Harry Liebel1bc9e1f2013-12-12 16:46:30 +000011{
Claus Pedersen63f75862022-09-12 23:47:10 +000012 return c;
Harry Liebel1bc9e1f2013-12-12 16:46:30 +000013}