home *** CD-ROM | disk | FTP | other *** search
-
- /* TYPICAL CTCMPL.H COMPILER SETUP FILE */
-
- #include <fcntl.h> /* get system file control parms */
-
- #define BUPDATE (O_RDWR | O_BINARY) /* set files to raw, read/write */
- #define BCREATE (O_BINARY | O_RDWR)
-
- #define C255 -1 /* -1 for signed char & '\377' */
- /* for unsigned char */
-
- #define ct_NULL (char *) 0 /* null data pointer. many 32 */
- /* bit systems prefer 0L */
-
- /* optional redefinition of cpybuf to system n-byte memory copy */
- #define cpybuf(dst_ptr,src_ptr,n) memcpy(dst_ptr,src_ptr,n)
-
- /* optional redefinition of remove if unlink is used to delete files */
- #define remove unlink
-
- /* optional definition of minimal ANSI C standard I/O library usage */
- #define CT_ANSI /* if defined, fopen, fseek, etc are used */
-
- /* end of ctcmpl.d */
-