I've encountered a PC-Lint error message (e136) :
Illegal macro name -- The ANSI standard restricts the use of certain names as
macros. defined is on the restricted list.
I cannot find any reference to such a list in the ANSI C specifications. Is this list maintained by PC-Lint itself or is there an official list of Macro names forbidden in ANSI C?
The chances are that you're using a macro name such as
_HEADER_FILE_H_
which is reserved to the implementation and PC Lint is telling you about this error.After removing the horizontal scroll bar, it appears that the name you are misusing is
defined
. The C preprocessor uses the namedefined
for:You cannot, therefore, write:
or anything similar. You should treat
defined
as a keyword, at least in pre-processor directives (and you can't treat it as a macro outside of pre-processor directives). Although you could use it as a variable name (and you could useendif
anddefine
andelif
as variable names too), you'd be best off not using it and treating them as reserved words.The C11 standard (ISO/IEC 9899:2011) says:
Previous editions of the standard used very similar wording for the equivalent set of restrictions.