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

  1.  
  2.  
  3.                                 Listing 2
  4.                         A K&R and ANSI Header File
  5.  
  6. #ifdef ANSI
  7.  
  8. int func1(int i);
  9.  
  10. #else
  11.  
  12. int func1();
  13.  
  14. #endif
  15.  
  16.