home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / unix / unixlib_1 / !UnixLib37_netlib_clib_sys_h_param < prev    next >
Encoding:
Text File  |  1996-11-06  |  827 b   |  35 lines

  1. /****************************************************************************
  2.  *
  3.  * $Source: /unixb/home/unixlib/source/unixlib37/clib/sys/h/RCS/param,v $
  4.  * $Date: 1996/10/30 21:58:59 $
  5.  * $Revision: 1.2 $
  6.  * $State: Exp $
  7.  * $Author: unixlib $
  8.  *
  9.  * $Log: param,v $
  10.  * Revision 1.2  1996/10/30 21:58:59  unixlib
  11.  * Massive changes made by Nick Burret and Peter Burwood.
  12.  *
  13.  * Revision 1.1  1996/04/19 21:23:56  simon
  14.  * Initial revision
  15.  *
  16.  ***************************************************************************/
  17.  
  18. #ifndef __SYS_PARAM_H
  19. #define __SYS_PARAM_H
  20.  
  21. #ifndef __LIMITS_H
  22. #include <limits.h>
  23. #endif
  24.  
  25. #define MAXPATHLEN    _POSIX_PATH_MAX
  26. #define MAXCOMMANDLEN    _POSIX_ARG_MAX
  27. /* DDE utils (if present) allows command of > 256 bytes - use max of 1K */
  28.  
  29. #if 0
  30. /* See <netdb.h> */
  31. #define MAXHOSTNAMELEN    8
  32. #endif
  33.  
  34. #endif
  35.