fputwc.c 897 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. wint_t fputwc_unlocked(wchar_t wc, FILE *stream)
  10. {
  11. return _wstdio_fwrite(&wc, 1, stream) ? wc : WEOF;
  12. }
  13. libc_hidden_def(fputwc_unlocked)
  14. strong_alias(fputwc_unlocked,putwc_unlocked)
  15. #ifndef __UCLIBC_HAS_THREADS__
  16. strong_alias(fputwc_unlocked,fputwc)
  17. libc_hidden_def(fputwc)
  18. strong_alias(fputwc_unlocked,putwc)
  19. #endif
  20. #elif defined __UCLIBC_HAS_THREADS__
  21. wint_t fputwc(wchar_t wc, register FILE *stream)
  22. {
  23. wint_t retval;
  24. __STDIO_AUTO_THREADLOCK_VAR;
  25. __STDIO_AUTO_THREADLOCK(stream);
  26. retval = fputwc_unlocked(wc, stream);
  27. __STDIO_AUTO_THREADUNLOCK(stream);
  28. return retval;
  29. }
  30. libc_hidden_def(fputwc)
  31. strong_alias(fputwc,putwc)
  32. #endif