home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_01 / 9n01100b < prev    next >
Text File  |  1990-10-22  |  229b  |  15 lines

  1.  
  2.      #ifdef MAIN
  3.           #define Global
  4.           #define INIT_GLOBAL
  5.      #else
  6.           #define Global extern
  7.      #endif
  8.  
  9.      Global int i
  10.      #ifdef INIT_GLOBAL
  11.                     = 5
  12.      #endif
  13.      ;
  14.  
  15.