Subversion Repositories Kolibri OS

Rev

Rev 8687 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
8687 turbocat 1
#ifndef _LIMITS_H_
2
#define _LIMITS_H_
3
 
4
 
5
#define INT_MAX       2147483647
8787 turbocat 6
#define INT_MIN       -2147483648
8687 turbocat 7
#define UINT_MAX      (INT_MAX * 2U + 1)
8
 
9
 
10
#ifndef ARG_MAX
11
#define ARG_MAX         4096
12
#endif
13
 
14
#ifndef PATH_MAX
15
#define PATH_MAX        4096
16
#endif
17
 
18
#ifndef STDIO_MAX_MEM
19
#define STDIO_MAX_MEM 4096
20
#endif
21
 
22
#endif /* _LIMITS_H_ */