blob: 3472b243637a29a22e0af31de44d58910fa0b563 [file] [log] [blame]
Harry Liebel1bc9e1f2013-12-12 16:46:30 +00001/*
Antonio Nino Diaz9eddb1e2018-08-16 14:53:05 +01002 * Copyright (c) 2013-2018, 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
Claus Pedersen63f75862022-09-12 23:47:10 +00009int __putchar(int c)
Harry Liebel1bc9e1f2013-12-12 16:46:30 +000010{
Claus Pedersen63f75862022-09-12 23:47:10 +000011 return c;
Harry Liebel1bc9e1f2013-12-12 16:46:30 +000012}
Claus Pedersen63f75862022-09-12 23:47:10 +000013
14int putchar(int c) __attribute__((weak,alias("__putchar")));