putwchar.c 618 B

12345678910111213141516171819202122232425262728293031
  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. extern wint_t __putwchar_unlocked(wchar_t wc);
  9. #ifdef __DO_UNLOCKED
  10. weak_alias(__putwchar_unlocked,putwchar_unlocked);
  11. #ifndef __UCLIBC_HAS_THREADS__
  12. weak_alias(__putwchar_unlocked,putwchar);
  13. #endif
  14. wint_t __putwchar_unlocked(wchar_t wc)
  15. {
  16. return __fputwc_unlocked(wc, stdout);
  17. }
  18. #elif defined __UCLIBC_HAS_THREADS__
  19. wint_t putwchar(wchar_t wc)
  20. {
  21. return fputc(wc, stdout);
  22. }
  23. #endif