Cx51 User's Guide
Technical Support
On-Line Manuals
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)