Extracted from Pike v8.0 release 28 as of 2015-09-20.
   

Directive #ifndef


Directive #ifndef

#ifndef

Description

Check whether an identifier is not a macro.

This is the inverse of #ifdef.

The directive

#ifndef <identifier>

is equvivalent to

#if !defined(<identifier>)

See also

#if, #ifdef, defined