14 lines
259 B
C
14 lines
259 B
C
/*
|
|
sys/param.h
|
|
*/
|
|
|
|
#ifndef __SYS_PARAM_H__
|
|
#define __SYS_PARAM_H__
|
|
|
|
#include <limits.h>
|
|
|
|
#define MAXHOSTNAMELEN 256 /* max hostname size */
|
|
#define NGROUPS 8 /* max number of supplementary groups */
|
|
#define MAXPATHLEN PATH_MAX
|
|
|
|
#endif /* __SYS_PARAM_H__ */
|