Update.
[glibc.git] / limits.h
blob9c0071a52887050bc6b5fea9fa0339777017a47d
1 /* Copyright (C) 1991, 1992, 1996, 1997 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If not,
16 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
20 * ISO C Standard: 4.14/2.2.4.2 Limits of integral types <limits.h>
23 #include <features.h>
25 #ifdef __USE_POSIX
26 /* POSIX adds things to <limits.h>. */
27 # include <posix1_lim.h>
28 #endif
30 #ifdef __USE_POSIX2
31 # include <posix2_lim.h>
32 #endif
34 #ifdef __USE_XOPEN
35 # include <xopen_lim.h>
36 #endif
39 #if __GNUC__ >= 2
41 /* Get the compiler's limits.h, which defines all the ANSI constants. */
42 #ifndef _LIBC_LIMITS_H_
43 #define _LIBC_LIMITS_H_ /* This tells it not to look for another. */
44 #endif
45 #ifndef _GCC_LIMITS_H_ /* This is what GCC's file defines. */
47 /* Maximum length of any multibyte character in any locale. We
48 define this here to prevent the value from the gcc value (which is
49 one) to take effect. */
50 #define MB_LEN_MAX 6
52 #include_next <limits.h>
53 #endif
55 #else /* Not GCC 2. */
57 /* We only protect from multiple inclusion here, because all the other
58 #include's protect themselves, and in GCC 2 we may #include_next through
59 multiple copies of this file before we get to GCC's. */
60 # ifndef _LIMITS_H
61 # define _LIMITS_H 1
63 /* We don't have #include_next.
64 Define ANSI <limits.h> for standard 32-bit words. */
66 /* These assume 8-bit `char's, 16-bit `short int's,
67 and 32-bit `int's and `long int's. */
69 /* Number of bits in a `char'. */
70 # define CHAR_BIT 8
72 /* Maximum length of any multibyte character in any locale. */
73 # define MB_LEN_MAX 6
75 /* Minimum and maximum values a `signed char' can hold. */
76 # define SCHAR_MIN (-128)
77 # define SCHAR_MAX 127
79 /* Maximum value an `unsigned char' can hold. (Minimum is 0.) */
80 # define UCHAR_MAX 255
82 /* Minimum and maximum values a `char' can hold. */
83 # ifdef __CHAR_UNSIGNED__
84 # define CHAR_MIN 0
85 # define CHAR_MAX UCHAR_MAX
86 # else
87 # define CHAR_MIN SCHAR_MIN
88 # define CHAR_MAX SCHAR_MAX
89 # endif
91 /* Minimum and maximum values a `signed short int' can hold. */
92 # define SHRT_MIN (-32768)
93 # define SHRT_MAX 32767
95 /* Maximum value an `unsigned short int' can hold. (Minimum is 0.) */
96 # define USHRT_MAX 65535
98 /* Minimum and maximum values a `signed int' can hold. */
99 # define INT_MIN (- INT_MAX - 1)
100 # define INT_MAX 2147483647
102 /* Maximum value an `unsigned int' can hold. (Minimum is 0.) */
103 # ifdef __STDC__
104 # define UINT_MAX 4294967295U
105 # else
106 # define UINT_MAX 4294967295
107 # endif
109 /* Minimum and maximum values a `signed long int' can hold. */
110 # ifdef __alpha__
111 # define LONG_MAX 9223372036854775807L
112 # else
113 # define LONG_MAX 2147483647L
114 # endif
115 # define LONG_MIN (- LONG_MAX - 1L)
117 /* Maximum value an `unsigned long int' can hold. (Minimum is 0.) */
118 # ifdef __alpha__
119 # define ULONG_MAX 18446744073709551615UL
120 # else
121 # ifdef __STDC__
122 # define ULONG_MAX 4294967295UL
123 # else
124 # define ULONG_MAX 4294967295L
125 # endif
126 # endif
128 # endif /* limits.h */
129 #endif /* GCC 2. */