Redefinition of macro 'PROCESSOR_ARCHITECTURE_UNKNOWN'

Started by Robert, August 22, 2009, 10:22:50 PM

Previous topic - Next topic

Robert

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