home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / e / emxdev8f.zip / PARAM.H < prev    next >
Text File  |  1992-10-14  |  357b  |  23 lines

  1. /* sys/param.h (emx+gcc) */
  2.  
  3. #if !defined (_SYS_PARAM_H)
  4. #define _SYS_PARAM_H
  5.  
  6. #if !defined (PAGE_SIZE)
  7. #define PAGE_SIZE 0x1000
  8. #endif
  9.  
  10. #if !defined (HZ)
  11. #define HZ        100
  12. #endif
  13.  
  14. #if !defined (MAXNAMLEN)
  15. #define MAXNAMLEN  260
  16. #endif
  17.  
  18. #if !defined (MAXPATHLEN)
  19. #define MAXPATHLEN 260
  20. #endif
  21.  
  22. #endif /* !defined (_SYS_PARAM_H) */
  23.