musl-tcc/src/stdio/putwc.c

8 lines
103 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#include "stdio_impl.h"
#include <wchar.h>
wint_t putwc(wchar_t c, FILE *f)
{
return fputwc(c, f);
}