If I make the define
#define PROCESSOR_ARCHITECTURE_UNKNOWN 65535
the pocc 6 compiler generates
S70.c(151): error #1050: Redefinition of macro 'PROCESSOR_ARCHITECTURE_UNKNOWN'.
If the define is made as
#define PROCESSOR_ARCHITECTURE_UNKNOWN 0xFFFF
then the program compiles without error
Robert Wishlaw