mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-08 06:44:27 +00:00
20 lines
398 B
C
20 lines
398 B
C
#include <windows.h>
|
|
#include <malloc.h>
|
|
#include <errno.h>
|
|
#include <msvcrt.h>
|
|
#include <sec_api/conio_s.h>
|
|
|
|
int __cdecl (*__MINGW_IMP_SYMBOL(_cwprintf_s_l))(const wchar_t *, _locale_t, ...) =
|
|
_cwprintf_s_l;
|
|
|
|
int __cdecl
|
|
_cwprintf_s_l (const wchar_t *s, _locale_t loc, ...)
|
|
{
|
|
va_list argp;
|
|
int r;
|
|
|
|
va_start (argp, loc);
|
|
r = _vcwprintf_s_l (s, loc, argp);
|
|
va_end (argp);
|
|
return r;
|
|
}
|