OLD | NEW |
---|---|
1 #include "stdio_impl.h" | 1 #include "stdio_impl.h" |
2 #include <wchar.h> | 2 #include <wchar.h> |
3 | 3 |
4 wint_t putwchar(wchar_t c) | 4 wint_t putwchar(wchar_t c) { |
5 { | 5 return fputwc(c, stdout); |
6 » return fputwc(c, stdout); | |
7 } | 6 } |
8 | 7 |
9 weak_alias(putwchar, putwchar_unlocked); | 8 weak_alias(putwchar, putwchar_unlocked); |
OLD | NEW |