blob: 1f919d1336f5db1c88defe7c43dcac1318bc3d73 [file] [log] [blame]
Harry Liebel1bc9e1f2013-12-12 16:46:30 +00001/*
Govindraj Raja4c700c12023-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-arm82cb2c12017-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 Diaz09d40e02018-12-14 00:18:21 +00008
Yann Gautier28dc8252023-01-05 09:50:11 +01009#pragma weak putchar
10int putchar(int c)
Harry Liebel1bc9e1f2013-12-12 16:46:30 +000011{
Claus Pedersene0b68262022-09-12 23:47:10 +000012 return c;
Harry Liebel1bc9e1f2013-12-12 16:46:30 +000013}