From 2b0d732208a804703c035c2f70d4a5e8b8692c56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net> Date: Sun, 9 Jan 2000 16:52:11 -0800 Subject: [PATCH] new define LONGEST, the longest integer available on the system Rev: src/global.h:1.42 --- src/global.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/global.h b/src/global.h index 31fb53fb6e..ee28a39ded 100644 --- a/src/global.h +++ b/src/global.h @@ -5,7 +5,7 @@ \*/ /* - * $Id: global.h,v 1.41 2000/01/10 00:48:45 hubbe Exp $ + * $Id: global.h,v 1.42 2000/01/10 00:52:11 hubbe Exp $ */ #ifndef GLOBAL_H #define GLOBAL_H @@ -192,6 +192,12 @@ char *alloca (); #define INT16 short #define INT8 char +#ifdef INT64 +#define LONGEST INT64 +#else +#define LONGEST INT32 +#endif + #define SIZE_T unsigned INT32 #define TYPE_T unsigned INT8 -- GitLab