From e46fcaa7556114707d282f4d65d9d0890cd91837 Mon Sep 17 00:00:00 2001 From: Kaleb Keithley Date: Mon, 15 Dec 2003 16:00:01 +0000 Subject: bring AIX config into the 21st Century --- lisp/internal.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lisp/internal.h b/lisp/internal.h index a0c6f10..855bb42 100644 --- a/lisp/internal.h +++ b/lisp/internal.h @@ -549,6 +549,13 @@ typedef struct { LispObj *errorp; /* ALWAYS (ONLY) READABLE: stderr of program */ } LispPipe; +/* silly IBM compiler */ +#ifdef AIXV5 /* probably want !gcc too */ +#define LispType int +#define LispFunType int +#define LispStreamType int +#endif + struct _LispObj { LispType type : 6; unsigned int mark : 1; /* gc protected */ @@ -641,6 +648,11 @@ struct _LispObj { } hash; } data; }; +#ifdef AIXV5 +#undef LispType +#undef LispFunType +#undef LispStreamType +#endif typedef LispObj *(*LispFunPtr)(LispBuiltin*); typedef void (*LispComPtr)(LispCom*, LispBuiltin*); -- cgit v1.2.3