8 lines
125 B
C
8 lines
125 B
C
#include "stdio_impl.h"
|
|
|
|
wint_t putwchar(wchar_t c)
|
|
{
|
|
return fputwc(c, stdout);
|
|
}
|
|
|
|
weak_alias(putwchar, putwchar_unlocked);
|