On Thu, 12 Aug 1999, Sven E. Aas wrote:
> e:\\palm\\GnuPP\\lib\\gcc-lib\\m68k-palmos-coff/2.7.2.2-kgpd-071097/include/
> Palm
> OS/Common.h:252: parse error before `false'
>
>
> The following is the region of Common.h in question:
>
>
> 240: // Include the following typedefs if types.h wasn't read.
> 241: #ifndef __TYPES__
> 242: #ifdef __MWERKS__
To get the error, __MWERKS__ must be defined, but isn't this only for
CodeWarrior?
I would check where/if this is defined and shut it off.
> 243: #if !__option(bool)
> 244: #ifndef true
> 245: #define true 1
> 246: #endif
> 247: #ifndef false
> 248: #define false 0
> 249: #endif
> 250: #endif
> 251: #else
> 252: enum {false, true};
> 253: #endif
> 254: #endif /* __TYPES__ */