Extracted from Pike v8.0 release 240 as of 2016-05-30.
   

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