Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
8622 Boppan 1
#ifndef _LIMITS_H_
2
#define _LIMITS_H_
3
 
4
 
5
#define INT_MAX       2147483647
6
#define UINT_MAX      (INT_MAX * 2U + 1)
7
 
8
 
9
#ifndef ARG_MAX
10
#define ARG_MAX         4096
11
#endif
12
 
13
#ifndef PATH_MAX
14
#define PATH_MAX        4096
15
#endif
16
 
17
 
18
#endif /* _LIMITS_H_ */