Discontinued
Technical Support
On-Line Manuals
CARM User's Guide
The #ifdef directive is a special case of the #if directive that tests a name to determine if it is defined.
#ifdef name
This directive is equivalent to:
#if defined(name)