From 487d1afa523706d8b0caec63492f4a2b6cef3bce Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Tue, 30 Nov 1999 14:01:39 +0000 Subject: Moved TIME_INFINITY to timer.h, so that it's publicly available. --- sysdep/unix/timer.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'sysdep/unix/timer.h') diff --git a/sysdep/unix/timer.h b/sysdep/unix/timer.h index afb2668..482f531 100644 --- a/sysdep/unix/timer.h +++ b/sysdep/unix/timer.h @@ -36,4 +36,14 @@ bird_clock_t tm_parse_date(char *); /* Convert date to bird_clock_t */ void tm_format_date(char *, bird_clock_t); /* Convert bird_clock_t to date */ #define TM_DATE_BUFFER_SIZE 12 /* Buffer size required by tm_format_date */ +#ifdef TIME_T_IS_64BIT +#define TIME_INFINITY 0x7fffffffffffffff +#else +#ifdef TIME_T_IS_SIGNED +#define TIME_INFINITY 0x7fffffff +#else +#define TIME_INFINITY 0xffffffff +#endif +#endif + #endif -- cgit v1.2.3