CARM User's Guide

Discontinued

#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)