putchar.c 206 B

12345678910111213
  1. /*
  2. * Copyright (c) 2013-2023, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #include <stdio.h>
  7. #pragma weak putchar
  8. int putchar(int c)
  9. {
  10. return c;
  11. }