Keil™, An ARM® Company

Cx51 User's Guide

#ifndef

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)