putwchar.c 610 B

123456789101112131415161718192021222324252627282930313233
  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. /* psm: should this be fputwc? */
  19. libc_hidden_proto(fputc)
  20. wint_t putwchar(wchar_t wc)
  21. {
  22. return fputc(wc, stdout);
  23. }
  24. #endif