home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / dmake40.zip / msdos / sysintf.h < prev    next >
C/C++ Source or Header  |  1994-10-23  |  470b  |  33 lines

  1. /*
  2. ** assorted bits of system interface
  3. */
  4.  
  5. #define STAT stat
  6. #define VOID_LCACHE(l,m)
  7. #define GETPID _psp
  8.  
  9. extern char * tempnam();
  10. extern char * getcwd();
  11.  
  12. /*
  13. ** standard C items
  14. */
  15.  
  16. /*
  17. ** DOS interface standard items
  18. */
  19. #define    chdir(p) _chdir(p)
  20.  
  21. /*
  22. ** make parameters
  23. */
  24. #ifdef _POSIX_NAME_MAX
  25. #undef  _POSIX_NAME_MAX
  26. #endif
  27. #define _POSIX_NAME_MAX 12
  28.  
  29. #ifdef _POSIX_PATH_MAX
  30. #undef _POSIX_PATH_MAX
  31. #endif
  32. #define _POSIX_PATH_MAX 64
  33.