zig/lib/libc/mingw/stdio/_getwc_nolock.c
2021-06-04 09:49:36 -07:00

11 lines
226 B
C
Vendored

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