musl-tcc/src/stdio/getwc.c

8 lines
89 B
C
Raw Normal View History

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