Extracted from Pike v8.0 release 164 as of 2016-02-09.
   

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