home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_07_08 / v7n8068b.txt < prev    next >
Text File  |  1989-10-02  |  343b  |  23 lines

  1.  
  2. *****Listing 2*****
  3.      init.h
  4.      #ifdef DEBUG
  5.      #define INIT  = NULL
  6.      #else
  7.      #define INIT
  8.      #endif
  9.  
  10.      any other file
  11.      #include "stdio.h"
  12.      #include "init.h"
  13.              ...
  14.      someproc(...)
  15.         {
  16.          char * a INIT;
  17.          something * b INIT;
  18.          ...
  19.         }
  20.  
  21. **********
  22.  
  23.