Add HAVE__GMTIME, HAVE__GMTIME_S, HAVE__GMTIME32, HAVE__GMTIME32_S, HAVE__GMTIME64, HAVE__GMTIME64_S (GH PR #35)

This commit is contained in:
Fred Helmesjö 2022-09-01 09:58:36 +02:00 committed by Boris Kolpackov
parent ad176f5bd4
commit a6081c13f4
6 changed files with 78 additions and 0 deletions

View File

@ -0,0 +1,13 @@
// HAVE__GMTIME : BUILD2_AUTOCONF_LIBC_VERSION
#ifndef BUILD2_AUTOCONF_LIBC_VERSION
# error BUILD2_AUTOCONF_LIBC_VERSION appears to be conditionally included
#endif
#undef HAVE__GMTIME
/* Win32
*/
#if defined(_WIN32)
# define HAVE__GMTIME 1
#endif

View File

@ -0,0 +1,13 @@
// HAVE__GMTIME32 : BUILD2_AUTOCONF_LIBC_VERSION
#ifndef BUILD2_AUTOCONF_LIBC_VERSION
# error BUILD2_AUTOCONF_LIBC_VERSION appears to be conditionally included
#endif
#undef HAVE__GMTIME32
/* Win32
*/
#if defined(_WIN32)
# define HAVE__GMTIME32 1
#endif

View File

@ -0,0 +1,13 @@
// HAVE__GMTIME32_S : BUILD2_AUTOCONF_LIBC_VERSION
#ifndef BUILD2_AUTOCONF_LIBC_VERSION
# error BUILD2_AUTOCONF_LIBC_VERSION appears to be conditionally included
#endif
#undef HAVE__GMTIME32_S
/* Win32
*/
#if defined(_WIN32)
# define HAVE__GMTIME32_S 1
#endif

View File

@ -0,0 +1,13 @@
// HAVE__GMTIME64 : BUILD2_AUTOCONF_LIBC_VERSION
#ifndef BUILD2_AUTOCONF_LIBC_VERSION
# error BUILD2_AUTOCONF_LIBC_VERSION appears to be conditionally included
#endif
#undef HAVE__GMTIME64
/* Win32
*/
#if defined(_WIN32)
# define HAVE__GMTIME64 1
#endif

View File

@ -0,0 +1,13 @@
// HAVE__GMTIME64_S : BUILD2_AUTOCONF_LIBC_VERSION
#ifndef BUILD2_AUTOCONF_LIBC_VERSION
# error BUILD2_AUTOCONF_LIBC_VERSION appears to be conditionally included
#endif
#undef HAVE__GMTIME64_S
/* Win32
*/
#if defined(_WIN32)
# define HAVE__GMTIME64_S 1
#endif

View File

@ -0,0 +1,13 @@
// HAVE__GMTIME_S : BUILD2_AUTOCONF_LIBC_VERSION
#ifndef BUILD2_AUTOCONF_LIBC_VERSION
# error BUILD2_AUTOCONF_LIBC_VERSION appears to be conditionally included
#endif
#undef HAVE__GMTIME_S
/* Win32
*/
#if defined(_WIN32)
# define HAVE__GMTIME_S 1
#endif