home *** CD-ROM | disk | FTP | other *** search
/ Sams Teach Yourself C in 21 Days (6th Edition) / STYC216E.ISO / mac / Examples / Day21 / prog.h < prev    next >
Text File  |  2002-05-22  |  223b  |  13 lines

  1. /* prog.h - A header file with a check to prevent multiple includes! */
  2.  
  3. #if defined( prog_h )
  4. /* the file has been included already */
  5. #else
  6. #define prog_h
  7.  
  8. /* Header file information goes here... */
  9.  
  10.  
  11. #endif
  12.  
  13.