12345678910111213141516171819202122232425262728 |
- #include "_stdio.h"
- #ifdef __DO_UNLOCKED
- wint_t putwchar_unlocked(wchar_t wc)
- {
- return fputwc_unlocked(wc, stdout);
- }
- #ifndef __UCLIBC_HAS_THREADS__
- strong_alias(putwchar_unlocked,putwchar)
- #endif
- #elif defined __UCLIBC_HAS_THREADS__
- wint_t putwchar(wchar_t wc)
- {
- return fputwc(wc, stdout);
- }
- #endif
|