NO

Author Topic: Redefinition of macro 'PROCESSOR_ARCHITECTURE_UNKNOWN'  (Read 2165 times)

Offline Robert

  • Member
  • *
  • Posts: 245
Redefinition of macro 'PROCESSOR_ARCHITECTURE_UNKNOWN'
« 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