Do not use '#endif/#else xxx'; it is not allowed for ANSI C

This commit is contained in:
ceriel
1991-12-17 14:11:15 +00:00
parent a38be6605e
commit 929a0025ca
56 changed files with 343 additions and 345 deletions

View File

@@ -14,9 +14,9 @@ extern arith
short_size, word_size, dword_size, int_size, long_size,
#ifndef NOFLOAT
float_size, double_size,
#endif NOFLOAT
#endif /* NOFLOAT */
pointer_size;
#else NOCROSS
#else /* NOCROSS */
#define short_size (SZ_SHORT)
#define word_size (SZ_WORD)
#define dword_size (2*SZ_WORD)
@@ -25,8 +25,8 @@ extern arith
#ifndef NOFLOAT
#define float_size (SZ_FLOAT)
#define double_size (SZ_DOUBLE)
#endif NOFLOAT
#endif /* NOFLOAT */
#define pointer_size (SZ_POINTER)
#endif NOCROSS
#endif /* NOCROSS */
extern arith max_int, max_unsigned; /* cstoper.c */