putwchar.c 664 B

12345678910111213141516171819202122232425262728293031323334
  1. /* Copyright (C) 2004 Manuel Novoa III <mjn3@codepoet.org>
  2. *
  3. * GNU Library General Public License (LGPL) version 2 or later.
  4. *
  5. * Dedicated to Toni. See uClibc/DEDICATION.mjn3 for details.
  6. */
  7. #include "_stdio.h"
  8. #ifdef __DO_UNLOCKED
  9. /* libc_hidden_proto(fputwc_unlocked) */
  10. wint_t putwchar_unlocked(wchar_t wc)
  11. {
  12. return fputwc_unlocked(wc, stdout);
  13. }
  14. #ifndef __UCLIBC_HAS_THREADS__
  15. strong_alias(putwchar_unlocked,putwchar)
  16. #endif
  17. #elif defined __UCLIBC_HAS_THREADS__
  18. /* libc_hidden_proto(__fputc_unlocked) */
  19. /* psm: should this be fputwc? */
  20. /* libc_hidden_proto(fputc) */
  21. wint_t putwchar(wchar_t wc)
  22. {
  23. return fputc(wc, stdout);
  24. }
  25. #endif