xref: /aosp_15_r20/external/musl/src/stdio/putwchar.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include "stdio_impl.h"
2 #include <wchar.h>
3 
putwchar(wchar_t c)4 wint_t putwchar(wchar_t c)
5 {
6 	return fputwc(c, stdout);
7 }
8 
9 weak_alias(putwchar, putwchar_unlocked);
10