Subversion Repositories tendra.SVN

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 7u83 1
#ifndef _MACH_MACHLIMITS_H_
2
#define _MACH_MACHLIMITS_H_
3
 
4
#define	CHAR_BIT	8
5
#define	SCHAR_MIN	(-128)
6
#define	SCHAR_MAX	 127
7
#define	CHAR_MAX	 127
8
#define	CHAR_MIN	(-128)
9
#define	SHRT_MAX	 32767
10
#define	SHRT_MIN	(-32768)
11
#define	INT_MAX		 2147483647
12
#define	INT_MIN		(-INT_MAX-1)
13
#define	LONG_MAX	 9223372036854775807L
14
#define	LONG_MIN	(-LONG_MAX-1)
15
#define UCHAR_MAX       255U
16
#define USHRT_MAX       65535U
17
#define UINT_MAX        4294967295U
18
#define ULONG_MAX       18446744073709551615UL
19
#define MB_LEN_MAX	4
20
 
21
#endif