blob: ec8425f784d05346c7b3c25d8e7d51d2da55b007 [file] [log] [blame]
#include <windows.h>
#include <malloc.h>
#include <errno.h>
HMODULE __mingw_get_msvcrt_handle(void);
int __cdecl _cprintf_s (char *,...);
errno_t __cdecl (*__MINGW_IMP_SYMBOL(_cprintf_s))(const char *,...) =
_cprintf_s;
int __cdecl
_cprintf_s (const char *s, ...)
{
va_list argp;
int r;
va_start (argp, s);
r = _vcprintf_s (s, argp);
va_end (argp);
return r;
}