diff options
author | Björn Jacke <bj@sernet.de> | 2010-01-07 00:40:09 +0100 |
---|---|---|
committer | Björn Jacke <bj@sernet.de> | 2010-01-07 00:50:29 +0100 |
commit | 571ee54b791b93ad46e09ed563ef4a5582dcf0c8 (patch) | |
tree | 529350fdfde09ca9f0dd585dee0b79cba5b935cc /lib/util/time.c | |
parent | b3e065e0c672426a473d13c14f43f557c98d9909 (diff) | |
download | samba-571ee54b791b93ad46e09ed563ef4a5582dcf0c8.tar.gz samba-571ee54b791b93ad46e09ed563ef4a5582dcf0c8.tar.bz2 samba-571ee54b791b93ad46e09ed563ef4a5582dcf0c8.zip |
lib/util: move TIME_T_MIN/MAX defines into header file
Diffstat (limited to 'lib/util/time.c')
-rw-r--r-- | lib/util/time.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/util/time.c b/lib/util/time.c index eadafe4562..571219b810 100644 --- a/lib/util/time.c +++ b/lib/util/time.c @@ -27,11 +27,6 @@ * @brief time handling functions */ -#ifndef TIME_T_MIN -/* we use 0 here, because (time_t)-1 means error */ -#define TIME_T_MIN 0 -#endif - #if (SIZEOF_LONG == 8) #define TIME_FIXUP_CONSTANT_INT 11644473600L #elif (SIZEOF_LONG_LONG == 8) @@ -40,15 +35,6 @@ -/* - * we use the INT32_MAX here as on 64 bit systems, - * gmtime() fails with INT64_MAX - */ - -#ifndef TIME_T_MAX -#define TIME_T_MAX MIN(INT32_MAX,_TYPE_MAXIMUM(time_t)) -#endif - /** External access to time_t_min and time_t_max. **/ |