Added param.h to the repository.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@836 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#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 */
|
||||
Reference in New Issue
Block a user