home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 2 / DATAFILE_PDCD2.iso / utilities2 / unixlib36d / UnixLib36d / clib / sys / h / param < prev    next >
Encoding:
Text File  |  1993-09-01  |  345 b   |  20 lines

  1. /* sys/param.h (c) Copyright 1990 H.Rogers */
  2.  
  3. #ifndef __SYS_PARAM_H
  4. #define __SYS_PARAM_H
  5.  
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9.  
  10. #define MAXPATHLEN    256    /* RiscOS braindamage */
  11. #define MAXCOMMANDLEN    1024
  12. /* DDE utils (if present) allows command of > 256 bytes - use max of 1K */
  13. #define MAXHOSTNAMELEN    8
  14.  
  15. #ifdef __cplusplus
  16.     }
  17. #endif
  18.  
  19. #endif
  20.