Subversion Repositories tendra.SVN

Rev

Go to most recent revision | 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 NL_ARGMAX
7
#define NL_ARGMAX	99
8
#endif
9
 
10
#ifndef NL_LANGMAX
11
#define NL_LANGMAX	31
12
#endif
13
 
14
#ifndef NL_MSGMAX
15
#define NL_MSGMAX	32767
16
#endif
17
 
18
#ifndef NL_NMAX
19
#define NL_NMAX		1
20
#endif
21
 
22
#ifndef NL_SETMAX
23
#define NL_SETMAX	255
24
#endif
25
 
26
#ifndef NL_TEXTMAX
27
#define NL_TEXTMAX	2048
28
#endif
29
 
30
#ifndef NZERO
31
#define NZERO		0
32
#endif
33
 
34
#ifndef WORD_BIT
35
#define WORD_BIT	32
36
#endif
37
 
38
#ifndef LONG_BIT
39
#define LONG_BIT	32
40
#endif
41
 
42
#endif