home *** CD-ROM | disk | FTP | other *** search
- /* $Id: config.h 3.2 92/03/14 11:57:03 cthuang Exp $
- *
- * cproto configuration and system dependencies
- */
-
- /* maximum include file nesting */
- #define MAX_INC_DEPTH 15
-
- /* maximum number of include directories */
- #define MAX_INC_DIR 15
-
- /* maximum text buffer size */
- #define MAX_TEXT_SIZE 256
-
- /* Borland C predefines __MSDOS__ */
- #ifdef __MSDOS__
- #ifndef MSDOS
- #define MSDOS
- #endif
- #endif
-
- #ifdef MSDOS
- #include <malloc.h>
- #include <stdlib.h>
- #else
- extern char *malloc();
- extern char *getenv();
- #endif
-
- #ifdef BSD
- #include <strings.h>
- #define strchr index
- #define strrchr rindex
- #else
- #include <string.h>
- #endif
-
- #ifndef MSDOS
- extern char *strstr();
- #endif
-
- /* C preprocessor */
- #ifdef TURBO_CPP
- #define CPP "cpp -P-"
- #endif
-
- #ifndef MSDOS
- #define CPP "/lib/cpp"
- #endif
-