home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c004 / 4.ddi / WATCOM / CTCMPL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1989-04-18  |  466 b   |  23 lines

  1. /* WATCOM C v6.5 */
  2.  
  3. #include <io.h>
  4. #include <fcntl.h>
  5. #define BUPDATE (O_RDWR | O_BINARY)
  6. #define    BCREATE    (O_CREAT | O_TRUNC | O_BINARY | O_RDWR)
  7. #define C255    '\377'
  8. #define ct_NULL    CTNULL
  9.  
  10. /*
  11.     CTNULL is defined on the make command lines in MAKEAPP.BAT.
  12.  
  13.     IF YOU DO NOT USE OUR MAKE FILES, YOU MUST MANUALLY DEFINE ct_NULL
  14.     TO CORRESPOND TO THE SIZE OF A DATA POINTER! THAT IS, EITHER
  15.  
  16.             #define ct_NULL 0L
  17.  
  18.                 OR
  19.  
  20.             #define ct_NULL 0
  21.  
  22. */
  23.