home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: InfoMgt / InfoMgt.zip / MAILMIND.ZOO / ENVIRON.BC next >
Text File  |  1992-03-11  |  916b  |  52 lines

  1. #ifndef ENVIRON_H
  2. #define ENVIRON_H
  3.  
  4. /* environ.h - BorlandC and TurboC specific version
  5.  * Division of Cancer Prevention & Control, NCI
  6.  */
  7.  
  8. /* Revision history:
  9.  * 1.04  tam  01/30/91  add conio.h
  10.  * 1.03  tam  12/28/90  add FINDFIRST macros
  11.  * 1.02  tam  09/14/90  convert to TurboC
  12.  * 1.01  tam  08/31/90  add defines
  13.  * 1.0   tam  08/24/90  split from local.h
  14.  */
  15.  
  16. /* specific compiler define - avoid use if possible */
  17. #define TURBOC
  18.  
  19. /* BorlandC specific headers */
  20. #include <conio.h>
  21. #include <alloc.h>
  22. #include <io.h>
  23. #include <dos.h>
  24. #include <dir.h>
  25. #include <fcntl.h>
  26.  
  27. /* System V compatible headers */
  28. #include <errno.h>
  29. #include <process.h>
  30. #include <sys\stat.h>
  31. #include <sys\types.h>
  32.  
  33. /* other headers */
  34. #include <pckeys.h>
  35.  
  36. /* defines */
  37. #define FILE_NAME_LEN  13               /* length of a DOS file name */
  38.  
  39. #endif /* environ.h */
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.