mirror of
https://github.com/ziglang/zig.git
synced 2025-12-08 23:33:07 +00:00
11 lines
251 B
C
Vendored
11 lines
251 B
C
Vendored
#undef __MSVCRT_VERSION__
|
|
#define __MSVCRT_VERSION__ 0x800
|
|
#include <stdio.h>
|
|
|
|
#undef _putwc_nolock
|
|
wint_t __cdecl _putwc_nolock(wchar_t c, FILE *stream);
|
|
wint_t __cdecl _putwc_nolock(wchar_t c, FILE *stream)
|
|
{
|
|
return _fputwc_nolock(c, stream);
|
|
}
|