Subversion Repositories tendra.SVN

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 7u83 1
#ifndef __HACKED_LIMITS_INCLUDED
2
#define __HACKED_LIMITS_INCLUDED
3
 
4
#include_next <limits.h>
5
 
6
#ifndef NGROUPS_MAX
7
#define NGROUPS_MAX		8
8
#endif
9
 
10
#ifndef NL_ARGMAX
11
#define NL_ARGMAX		9
12
#endif
13
 
14
#ifndef NL_LANGMAX
15
#define NL_LANGMAX		14
16
#endif
17
 
18
#ifndef NL_MSGMAX
19
#define NL_MSGMAX		32767
20
#endif
21
 
22
#ifndef NL_NMAX
23
#define NL_NMAX			1
24
#endif
25
 
26
#ifndef NL_SETMAX
27
#define NL_SETMAX		255
28
#endif
29
 
30
#ifndef NL_TEXTMAX
31
#define NL_TEXTMAX		255
32
#endif
33
 
34
#ifndef NZERO
35
#define NZERO			20
36
#endif
37
 
38
#ifndef WORD_BIT
39
#define WORD_BIT		32
40
#endif
41
 
42
#ifndef LONG_BIT
43
#define LONG_BIT		32
44
#endif
45
 
46
#ifndef _POSIX_SSIZE_MAX
47
#define _POSIX_SSIZE_MAX	LONG_MAX
48
#endif
49
 
50
#ifndef _POSIX_STREAM_MAX
51
#define _POSIX_STREAM_MAX	32
52
#endif
53
 
54
#ifndef _POSIX_TZNAME_MAX
55
#define _POSIX_TZNAME_MAX	32
56
#endif
57
 
58
#endif