comparison src/lisp.h @ 243:f220cc83d72e r20-5b20

Import from CVS: tag r20-5b20
author cvs
date Mon, 13 Aug 2007 10:17:07 +0200
parents 78478c60bfcd
children 51092a27c943
comparison
equal deleted inserted replaced
242:fc816b73a05f 243:f220cc83d72e
37 #include <stdlib.h> 37 #include <stdlib.h>
38 #include <string.h> /* primarily for memcpy, etc. */ 38 #include <string.h> /* primarily for memcpy, etc. */
39 #include <stdio.h> /* NULL, etc. */ 39 #include <stdio.h> /* NULL, etc. */
40 #include <ctype.h> 40 #include <ctype.h>
41 #include <stdarg.h> 41 #include <stdarg.h>
42
43 #ifdef HAVE_LIMITS_H
44 #include <limits.h> 42 #include <limits.h>
45 #endif 43
46 /* Define INT_MAX, DBL_DIG if not in limits.h */ 44 /* Define INT_MAX, DBL_DIG if not in limits.h */
47 #ifndef INT_MAX 45 #ifndef INT_MAX
48 #define INT_MAX ((int) ((1U << (INTBITS - 1)) - 1)) 46 #define INT_MAX ((int) ((1U << (INTBITS - 1)) - 1))
49 #endif 47 #endif
50 #ifndef DBL_DIG 48 #ifndef DBL_DIG