home *** CD-ROM | disk | FTP | other *** search
- /* $Id: config.h 2.1 91/02/28 11:16:12 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 number of characters in a text buffer */
- #define MAX_TEXT_LENGTH 256
-
- #ifdef __TURBOC__
- #include <alloc.h>
- #endif
-
- #ifdef M_I86
- #include <malloc.h>
- #endif
-
- #ifndef MSDOS
- extern char *malloc();
- #endif
-
- #if defined(SYSV) || defined(MSDOS)
- #include <string.h>
- #define index strchr
- #define rindex strrchr
- #else
- #include <strings.h>
- #endif
-
- #ifndef MSDOS
- extern char *strdup(), *strstr();
- #endif
-