fix sigset macro for 64-bit systems (<< was overflowing due to wrong type)
[musl] / src / stdio / putwc.c
1 #include "stdio_impl.h"
2
3 wint_t putwc(wchar_t c, FILE *f)
4 {
5         return fputwc(c, f);
6 }