home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast.iso / pcmag / vol7n10.zip / PCMAG.H < prev    next >
C/C++ Source or Header  |  1988-05-31  |  257b  |  21 lines

  1. /* PcMag.H - Standard definitions for PC magazine C programs  */
  2.  
  3. #ifndef TRUE
  4. #define TRUE 1
  5. #endif
  6.  
  7. #ifndef FALSE
  8. #define FALSE 0
  9. #endif
  10.  
  11. #ifndef NULL
  12. #define NULL 0
  13. #endif
  14.  
  15. #ifndef ERROR
  16. #define ERROR -1
  17. #endif
  18.  
  19. /* End of PcMag.h */
  20.  
  21.