From f5729dbb6e720cb6076ea053f1ad0680259e6b39 Mon Sep 17 00:00:00 2001 From: Björn Jacke Date: Thu, 7 Jan 2010 00:41:50 +0100 Subject: s3:lib/time: remove TIME_T_MIN/MAX defines we already get them from lib/util/time.h --- source3/lib/time.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'source3/lib/time.c') diff --git a/source3/lib/time.c b/source3/lib/time.c index 60949b8bbd..5286af37fd 100644 --- a/source3/lib/time.c +++ b/source3/lib/time.c @@ -28,14 +28,6 @@ */ -#ifndef TIME_T_MIN -#define TIME_T_MIN ((time_t)0 < (time_t) -1 ? (time_t) 0 \ - : ~ (time_t) 0 << (sizeof (time_t) * CHAR_BIT - 1)) -#endif -#ifndef TIME_T_MAX -#define TIME_T_MAX (~ (time_t) 0 - TIME_T_MIN) -#endif - #define NTTIME_INFINITY (NTTIME)0x8000000000000000LL #if (SIZEOF_LONG == 8) -- cgit