Pelles C forum

Pelles C => Bug reports => Topic started by: Robert on August 22, 2009, 10:22:50 PM

Title: Redefinition of macro 'PROCESSOR_ARCHITECTURE_UNKNOWN'
Post by: Robert on August 22, 2009, 10:22:50 PM
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