diff options
author | Yang Tse <yangsita@gmail.com> | 2008-03-07 02:49:14 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-03-07 02:49:14 +0000 |
commit | 8e9e33ae52b7b17d57c9fc8694e2f77fab11ae03 (patch) | |
tree | bd015191497077a86861a59bea543ec13225efdd /lib/config-win32ce.h | |
parent | 40e1a016f92903c731f07325bc1f9c6416ae1ac3 (diff) | |
download | curl-8e9e33ae52b7b17d57c9fc8694e2f77fab11ae03.tar.gz |
VS2005 and later dafault size for time_t is 64-bit, unless
_USE_32BIT_TIME_T has been defined to get a 32-bit time_t
Diffstat (limited to 'lib/config-win32ce.h')
-rw-r--r-- | lib/config-win32ce.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/config-win32ce.h b/lib/config-win32ce.h index 7531d4b1f..6c0fb411f 100644 --- a/lib/config-win32ce.h +++ b/lib/config-win32ce.h @@ -314,6 +314,16 @@ #define _CRT_NONSTDC_NO_DEPRECATE 1 #endif +/* VS2005 and later dafault size for time_t is 64-bit, unless */ +/* _USE_32BIT_TIME_T has been defined to get a 32-bit time_t. */ +#if defined(_MSC_VER) && (_MSC_VER >= 1400) +# ifndef _USE_32BIT_TIME_T +# define SIZEOF_TIME_T 8 +# else +# define SIZEOF_TIME_T 4 +# endif +#endif + /* ---------------------------------------------------------------- */ /* LDAP SUPPORT */ /* ---------------------------------------------------------------- */ |