musl-tcc/src/stdio/getwc.c

8 lines
89 B
C

#include "stdio_impl.h"
#include <wchar.h>
wint_t getwc(FILE *f)
{
return fgetwc(f);
}