home *** CD-ROM | disk | FTP | other *** search
- /* limits.h
- * ANSI C Runtime Library
- */
-
- #ifndef CHAR_BIT
- # define CHAR_BIT 8
- # define SCHAR_MIN -127
- # define SCHAR_MAX 127
- # define UCHAR_MAX 255u
- # define CHAR_MIN SCHAR_MIN
- # define CHAR_MAX SCHAR_MAX
- # define SHRT_MIN -32767
- # define SHRT_MAX 32767
- # define USHRT_MAX 65535u
- # define INT_MIN -2147483647
- # define INT_MAX 2147483647
- # define UINT_MAX 4294967295u
- # define LONG_MIN -2147483647
- # define LONG_MAX 2147483647
- # define ULONG_MAX 4294967295u
- #endif
-