The following sequence worked in previous versions; what is the correct syntax now? #ifndef SYS_HW error: SYS_HW must be defined !! #endif
Hmm... I always thought that in ANSI C a preprocessor directive is used to generate compilation error:
#ifndef SYS_HW #error SYS_HW must be defined !! #endif