getwchar.c 610 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. #ifdef __DO_UNLOCKED
  9. wint_t __getwchar_unlocked(void)
  10. {
  11. return __fgetwc_unlocked(stdin);
  12. }
  13. weak_alias(__getwchar_unlocked,getwchar_unlocked)
  14. #ifndef __UCLIBC_HAS_THREADS__
  15. weak_alias(__getwchar_unlocked,getwchar)
  16. #endif
  17. #elif defined __UCLIBC_HAS_THREADS__
  18. extern wint_t __fgetwc (__FILE *__stream) attribute_hidden;
  19. wint_t getwchar(void)
  20. {
  21. return __fgetwc(stdin);
  22. }
  23. #endif