home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------
- *
- * compiler.h
- *
- * define symbols for the compiler and memory model being used
- *
- *----------------------------------------------------------*/
-
- #ifndef __COMPILER__
-
- #define __COMPILER__
-
- /* exactly 1 of these should be defined to 1 */
-
- #define AZTEC 0
- #define MSC50 0
- #define TURBOC 1
-
- /* these symbols select the memory model used */
-
- #define _LARGEDATA 1
- #define _LARGECODE 1
-
- #endif /* __COMPILER__ */
-