#ifdef
ACTION: include code if symbol already defined
USE: to allow blocks of code to be included or omitted at compile time
EXAMPLE:
#ifdef MSWIN
  #include "windows.inc"
#endif

RELATED: #if #elseif #elif #endif