summaryrefslogtreecommitdiff
path: root/lib/util/time.c
diff options
context:
space:
mode:
authorBjörn Jacke <bj@sernet.de>2010-01-07 00:40:09 +0100
committerBjörn Jacke <bj@sernet.de>2010-01-07 00:50:29 +0100
commit571ee54b791b93ad46e09ed563ef4a5582dcf0c8 (patch)
tree529350fdfde09ca9f0dd585dee0b79cba5b935cc /lib/util/time.c
parentb3e065e0c672426a473d13c14f43f557c98d9909 (diff)
downloadsamba-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.c14
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.
**/