aboutsummaryrefslogtreecommitdiff
path: root/include/sys/param.h
blob: d03021a1e848a0ecee16b4c72c2f5455b419518f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __PARAM_H__
#define __PARAM_H__

#ifndef MAXPATHLEN
#ifdef PATH_MAX
#define MAXPATHLEN PATH_MAX
#else
#define MAXPATHLEN 255
#endif
#endif

#endif