1234567891011121314151617181920212223242526272829 |
- #include "_stdio.h"
- #ifdef __DO_UNLOCKED
- wint_t __putwchar_unlocked(wchar_t wc)
- {
- return __fputwc_unlocked(wc, stdout);
- }
- weak_alias(__putwchar_unlocked,putwchar_unlocked);
- #ifndef __UCLIBC_HAS_THREADS__
- weak_alias(__putwchar_unlocked,putwchar);
- #endif
- #elif defined __UCLIBC_HAS_THREADS__
- wint_t putwchar(wchar_t wc)
- {
- return fputc(wc, stdout);
- }
- #endif
|