home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c004 / 2.ddi / CTCMPL.D < prev    next >
Encoding:
Text File  |  1989-04-18  |  806 b   |  25 lines

  1.  
  2. /* TYPICAL CTCMPL.H COMPILER SETUP FILE */
  3.  
  4. #include <fcntl.h>            /* get system file control parms */
  5.  
  6. #define BUPDATE (O_RDWR | O_BINARY)    /* set files to raw, read/write  */
  7. #define    BCREATE    (O_BINARY | O_RDWR)
  8.  
  9. #define C255    -1            /* -1 for signed char & '\377'   */
  10.                     /* for unsigned char         */
  11.  
  12. #define ct_NULL    (char *) 0        /* null data pointer. many 32    */
  13.                     /* bit systems prefer 0L     */
  14.  
  15. /* optional redefinition of cpybuf to system n-byte memory copy         */
  16. #define cpybuf(dst_ptr,src_ptr,n) memcpy(dst_ptr,src_ptr,n)
  17.  
  18. /* optional redefinition of remove if unlink is used to delete files     */
  19. #define remove    unlink    
  20.  
  21. /* optional definition of minimal ANSI C standard I/O library usage */
  22. #define CT_ANSI        /* if defined, fopen, fseek, etc are used   */
  23.  
  24. /* end of ctcmpl.d */
  25.