1
2
3 #ifndef _MINGW_TIME_H
4 #define _MINGW_TIME_H
5
6
7
8
9
10
11
12 #ifdef __MINGW32__
13 #include <_mingw.h>
14 #endif
15
16
17 #ifndef __MINGW64_VERSION_MAJOR
18 # ifndef __MINGW_VERSION
19 # define __MINGW_VERSION 3.17
20 # undef __MINGW_MAJOR_VERSION
21 # define __MINGW_MAJOR_VERSION 3
22 # undef __MINGW_MINOR_VERSION
23 # define __MINGW_MINOR_VERSION 17
24 # undef __MINGW_PATCHLEVEL
25 # define __MINGW_PATCHLEVEL 0
26 # endif
27 #endif
28 #if __MINGW_MAJOR_VERSION >= 4
29 # define _USE_32BIT_TIME_T
30 #endif
31
32 #endif