zig/lib/libc/mingw/stdio/_getwc_nolock.c

9 lines
167 B
C
Raw Normal View History

#include <stdio.h>
#undef _getwc_nolock
wint_t __cdecl _getwc_nolock(FILE *stream);
wint_t __cdecl _getwc_nolock(FILE *stream)
{
return _fgetwc_nolock(stream);
}