From baf93985c094f6c49f363c9835fd1d3a14e3e03b Mon Sep 17 00:00:00 2001 From: Arthur David Olson Date: Thu, 21 Oct 2004 10:29:28 -0400 Subject: [PATCH] difftime work SCCS-file: private.h SCCS-SID: 7.55 --- private.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/private.h b/private.h index 658d8d4..f7eb2d9 100644 --- a/private.h +++ b/private.h @@ -21,7 +21,7 @@ #ifndef lint #ifndef NOID -static char privatehid[] = "%W%"; +static char privatehid[] = "@(#)private.h 7.55"; #endif /* !defined NOID */ #endif /* !defined lint */ @@ -238,6 +238,10 @@ char * scheck P((const char *string, const char *format)); #define TYPE_SIGNED(type) (((type) -1) < 0) #endif /* !defined TYPE_SIGNED */ +#ifndef TYPE_INTEGRAL +#define TYPE_INTEGRAL(type) (((type) 0.4) == 0) +#endif /* !defined TYPE_INTEGRAL */ + #ifndef INT_STRLEN_MAXIMUM /* ** 302 / 1000 is log10(2.0) rounded up.