home *** CD-ROM | disk | FTP | other *** search
- #ifndef ENVIRON_H
- #define ENVIRON_H
-
- /* environ.h - BorlandC and TurboC specific version
- * Division of Cancer Prevention & Control, NCI
- */
-
- /* Revision history:
- * 1.04 tam 01/30/91 add conio.h
- * 1.03 tam 12/28/90 add FINDFIRST macros
- * 1.02 tam 09/14/90 convert to TurboC
- * 1.01 tam 08/31/90 add defines
- * 1.0 tam 08/24/90 split from local.h
- */
-
- /* specific compiler define - avoid use if possible */
- #define TURBOC
-
- /* BorlandC specific headers */
- #include <conio.h>
- #include <alloc.h>
- #include <io.h>
- #include <dos.h>
- #include <dir.h>
- #include <fcntl.h>
-
- /* System V compatible headers */
- #include <errno.h>
- #include <process.h>
- #include <sys\stat.h>
- #include <sys\types.h>
-
- /* other headers */
- #include <pckeys.h>
-
- /* defines */
- #define FILE_NAME_LEN 13 /* length of a DOS file name */
-
- #endif /* environ.h */
-
-
-
-
-
-
-
-
-
-
-
-