blob: 40dce33cf1b693a6f1f6d287eede9243f7a04b7e [file] [log] [blame]
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the mingw-w64 runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#include <time.h>
#include <errno.h>
errno_t __cdecl _get_timezone(long *value)
{
if (!value)
{
errno = EINVAL;
return EINVAL;
}
*value = _timezone;
return 0;
}
errno_t (__cdecl *__MINGW_IMP_SYMBOL(_get_timezone))(long *) = _get_timezone;