home *** CD-ROM | disk | FTP | other *** search
- /***********************************************************************
-
- FILE
- envir.h - defines program environment
-
- LAST UPDATE
- 16 August 1987
- remove unnecessary clutter
-
- Copyright(c) 1985,1986,1987 D.M. Auslander and C.H. Tham
-
- ***********************************************************************/
-
- /*********************** Operating System ************************/
-
- #define UNIX 0 /* 4.2 BSD, implies UNIX C compiler */
- #define PCDOS 1 /* includes generic MSDOS family */
- #define CPM 0 /* the CP/M family, including MP/M */
-
-
- /******************* Hardware or Machine Type *******************/
-
- #define IBMPC 1 /* standard PC, PC/XT, PC/AT */
- #define COMPUPRO 0 /* Compupro 8086 or Dual Processor */
- #define INTEL310 0 /* Intel 310 development system */
-
-
- /*************************** Compilers **************************/
-
- #define CIC86 0 /* Computer Innovations C86 ver. 2.20M */
- #define DESMET 0 /* Desmet C */
- #define LATTICE 0 /* Lattice C ver. 2.15 */
- #define MICROSOFT 1 /* Microsft C ver. 4.00 */
-
- #if MICROSOFT
- #define ANSI /* use proposed ANSI C features */
- #endif
-
-