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