Displaying 1 result from an estimated 1 matches for "prepreprocessor".
2003 Apr 11
0
compilation errors
...preprocessor conditional:
#if SSIZE_T_MAX >= LLONG_MAX
(etc)
Unfortunately /usr/include/machine/limits.h defines LLONG_MAX thusly:
#define LLONG_MAX (__extension__(9223372036854775807LL))
(evidently to suppress pedantic warnings about the gcc long long
constant extension) but the cpp prepreprocessor stumbles over this
comparison. This might be fixed in a later gcc, I dunno- it's gcc
2.95.2 here.
Yours,
-mm-