musl-tcc/src/stdio/putwc.c

8 lines
103 B
C

#include "stdio_impl.h"
#include <wchar.h>
wint_t putwc(wchar_t c, FILE *f)
{
return fputwc(c, f);
}