musl/src/stdio/getwc.c
2011-02-12 00:22:29 -05:00

7 lines
70 B
C

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