blob: 787c76be4df0591bca9a12fd770d6a75b659994a [file] [log] [blame]
#include <windows.h>
#include <malloc.h>
#include <errno.h>
#include <msvcrt.h>
#include <sec_api/conio_s.h>
static int __cdecl _int_vcprintf_s_l (const char *, _locale_t, va_list);
static int __cdecl _stub (const char *, _locale_t, va_list);
int __cdecl (*__MINGW_IMP_SYMBOL(_vcprintf_s_l))(const char *, _locale_t, va_list) =
_stub;
static int __cdecl
_stub (const char *s, _locale_t loc, va_list argp)
{
int __cdecl (*f)(const char *, _locale_t, va_list) = __MINGW_IMP_SYMBOL(_vcprintf_s_l);
if (f == _stub)
{
f = (int __cdecl (*)(const char *, _locale_t, va_list))
GetProcAddress (__mingw_get_msvcrt_handle (), "_vcprintf_s_l");
if (!f)
f = _int_vcprintf_s_l;
__MINGW_IMP_SYMBOL(_vcprintf_s_l) = f;
}
return (*f)(s, loc, argp);
}
int __cdecl
_vcprintf_s_l (const char *s, _locale_t loc, va_list argp)
{
return _stub (s, loc, argp);
}
static int __cdecl
_int_vcprintf_s_l (const char *s, _locale_t loc, va_list argp)
{
return _vcprintf_l (s, loc, argp);
}