Files
haiku-beta6/headers/posix/sys/param.h
T

18 lines
364 B
C
Raw Normal View History

2002-08-20 10:35:02 +00:00
#ifndef _SYS_PARAM_H
#define _SYS_PARAM_H
#include <limits.h>
#define MAXPATHLEN PATH_MAX
#define MAXSYMLINKS SYMLINKS_MAX
#define NOFILE OPEN_MAX
#define MIN(a,b) (((a) < (b)) ? (a) : (b))
#define MAX(a,b) (((a) > (b)) ? (a) : (b))
/* maximum possible length of this machine's hostname */
#define MAXHOSTNAMELEN 256
#endif /* _SYS_PARAM_H */