| lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 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 |  | 
|  | 8 | #include "_stdio.h" | 
|  | 9 |  | 
|  | 10 | #ifdef __DO_UNLOCKED | 
|  | 11 |  | 
|  | 12 |  | 
|  | 13 | wint_t putwchar_unlocked(wchar_t wc) | 
|  | 14 | { | 
|  | 15 | return fputwc_unlocked(wc, stdout); | 
|  | 16 | } | 
|  | 17 |  | 
|  | 18 | #ifndef __UCLIBC_HAS_THREADS__ | 
|  | 19 | strong_alias(putwchar_unlocked,putwchar) | 
|  | 20 | #endif | 
|  | 21 |  | 
|  | 22 | #elif defined __UCLIBC_HAS_THREADS__ | 
|  | 23 |  | 
|  | 24 | /* psm: should this be fputwc? */ | 
|  | 25 |  | 
|  | 26 | wint_t putwchar(wchar_t wc) | 
|  | 27 | { | 
|  | 28 | return fputc(wc, stdout); | 
|  | 29 | } | 
|  | 30 |  | 
|  | 31 | #endif |