Update.
[glibc.git] / include / features.h
blob52aeaabb4c75aaecc97d67d98932f7e17cf33535
1 /* Copyright (C) 1991, 92, 93, 95, 96, 97 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. */
19 #ifndef _FEATURES_H
20 #define _FEATURES_H 1
22 /* These are defined by the user (or the compiler)
23 to specify the desired environment:
25 __STRICT_ANSI__ ISO Standard C.
26 _ISOC9X_SOURCE Extensions to ISO C 89 from ISO C 9x.
27 _POSIX_SOURCE IEEE Std 1003.1.
28 _POSIX_C_SOURCE If ==1, like _POSIX_SOURCE; if >=2 add IEEE Std 1003.2;
29 if >=199309L, add IEEE Std 1003.1b-1993
30 _XOPEN_SOURCE Includes POSIX and XPG things. Set to 500 if
31 Single Unix conformance is wanted.
32 _XOPEN_SOURCE_EXTENDED XPG things and X/Open Unix extensions.
33 _BSD_SOURCE ISO C, POSIX, and 4.3BSD things.
34 _SVID_SOURCE ISO C, POSIX, and SVID things.
35 _GNU_SOURCE All of the above, plus GNU extensions.
36 _REENTRANT Select additionally reentrant object.
37 _THREAD_SAFE Same as _REENTRANT, often used by other systems.
39 The `-ansi' switch to the GNU C compiler defines __STRICT_ANSI__.
40 If none of these are defined, the default is all but _GNU_SOURCE.
41 If more than one of these are defined, they accumulate.
42 For example __STRICT_ANSI__, _POSIX_SOURCE and _POSIX_C_SOURCE
43 together give you ISO C, 1003.1, and 1003.2, but nothing else.
45 These are defined by this file and are used by the
46 header files to decide what to declare or define:
48 __USE_ISOC9X Define ISO C 9X things.
49 __USE_POSIX Define IEEE Std 1003.1 things.
50 __USE_POSIX2 Define IEEE Std 1003.2 things.
51 __USE_POSIX199309 Define IEEE Std 1003.1b things.
52 __USE_XOPEN Define XPG things.
53 __USE_XOPEN_EXTENDED Define X/Open Unix things.
54 __USE_UNIX98 Define Single Unix V2 things.
55 __USE_BSD Define 4.3BSD things.
56 __USE_SVID Define SVID things.
57 __USE_MISC Define things common to BSD and System V Unix.
58 __USE_GNU Define GNU extensions.
59 __USE_REENTRANT Define reentrant/thread-safe *_r functions.
60 __FAVOR_BSD Favor 4.3BSD things in cases of conflict.
62 The macros `__GNU_LIBRARY__', `__GLIBC__', and `__GLIBC_MINOR__' are
63 defined by this file unconditionally. `__GNU_LIBRARY__' is provided
64 only for compatibility. All new code should use the other symbols
65 to test for features.
67 All macros listed above as possibly being defined by this file are
68 explicitly undefined if they are not explicitly defined.
69 Feature-test macros that are not defined by the user or compiler
70 but are implied by the other feature-test macros defined (or by the
71 lack of any definitions) are defined by the file. */
74 /* Undefine everything, so we get a clean slate. */
75 #undef __USE_ISOC9X
76 #undef __USE_POSIX
77 #undef __USE_POSIX2
78 #undef __USE_POSIX199309
79 #undef __USE_XOPEN
80 #undef __USE_XOPEN_EXTENDED
81 #undef __USE_BSD
82 #undef __USE_SVID
83 #undef __USE_MISC
84 #undef __USE_GNU
85 #undef __USE_REENTRANT
86 #undef __FAVOR_BSD
87 #undef __KERNEL_STRICT_NAMES
89 /* Suppress kernel-name space pollution unless user expressedly asks
90 for it. */
91 #ifndef _LOOSE_KERNEL_NAMES
92 # define __KERNEL_STRICT_NAMES
93 #endif
95 /* Always use ISO C things. */
96 #define __USE_ANSI 1
99 /* If _BSD_SOURCE was defined by the user, favor BSD over POSIX. */
100 #if defined _BSD_SOURCE && \
101 !(defined _POSIX_SOURCE || defined _POSIX_C_SOURCE || \
102 defined _XOPEN_SOURCE || defined _XOPEN_SOURCE_EXTENDED || \
103 defined _GNU_SOURCE || defined _SVID_SOURCE)
104 # define __FAVOR_BSD 1
105 #endif
107 /* If _GNU_SOURCE was defined by the user, turn on all the other features. */
108 #ifdef _GNU_SOURCE
109 # undef _ISOC9X_SOURCE
110 # define _ISOC9X_SOURCE 1
111 # undef _POSIX_SOURCE
112 # define _POSIX_SOURCE 1
113 # undef _POSIX_C_SOURCE
114 # define _POSIX_C_SOURCE 199309L
115 # undef _XOPEN_SOURCE
116 # define _XOPEN_SOURCE 500
117 # undef _XOPEN_SOURCE_EXTENDED
118 # define _XOPEN_SOURCE_EXTENDED 1
119 # undef _BSD_SOURCE
120 # define _BSD_SOURCE 1
121 # undef _SVID_SOURCE
122 # define _SVID_SOURCE 1
123 #endif
125 /* If nothing (other than _GNU_SOURCE) is defined,
126 define _BSD_SOURCE and _SVID_SOURCE. */
127 #if (!defined __STRICT_ANSI__ && !defined _ISOC9X_SOURCE && \
128 !defined _POSIX_SOURCE && !defined _POSIX_C_SOURCE && \
129 !defined _XOPEN_SOURCE && !defined _XOPEN_SOURCE_EXTENDED && \
130 !defined _BSD_SOURCE && !defined _SVID_SOURCE)
131 # define _BSD_SOURCE 1
132 # define _SVID_SOURCE 1
133 #endif
135 /* This is to enable the ISO C 9x extension. It will go away as soon
136 as this standard is officially released. */
137 #ifdef _ISOC9X_SOURCE
138 # define __USE_ISOC9X 1
139 #endif
141 /* If none of the ANSI/POSIX macros are defined, use POSIX.1 and POSIX.2
142 (and IEEE Std 1003.1b-1993 unless _XOPEN_SOURCE is defined). */
143 #if (!defined __STRICT_ANSI__ && !defined _POSIX_SOURCE && \
144 !defined _POSIX_C_SOURCE)
145 # define _POSIX_SOURCE 1
146 # if defined _XOPEN_SOURCE && _XOPEN_SOURCE != 500
147 # define _POSIX_C_SOURCE 2
148 # else
149 # define _POSIX_C_SOURCE 199309L
150 # endif
151 #endif
153 #if defined _POSIX_SOURCE || _POSIX_C_SOURCE >= 1 || defined _XOPEN_SOURCE
154 # define __USE_POSIX 1
155 #endif
157 #if defined _POSIX_C_SOURCE && _POSIX_C_SOURCE >= 2 || defined _XOPEN_SOURCE
158 # define __USE_POSIX2 1
159 #endif
161 #if defined _POSIX_C_SOURCE && _POSIX_C_SOURCE >= 199309L
162 # define __USE_POSIX199309 1
163 #endif
165 #ifdef _XOPEN_SOURCE
166 # define __USE_XOPEN 1
167 # if _XOPEN_SOURCE == 500
168 # define __USE_XOPEN_EXTENDED 1
169 # define __USE_UNIX98 1
170 # else
171 # ifdef _XOPEN_SOURCE_EXTENDED
172 # define __USE_XOPEN_EXTENDED 1
173 # endif
174 # endif
175 #endif
177 #if defined _BSD_SOURCE || defined _SVID_SOURCE
178 # define __USE_MISC 1
179 #endif
181 #ifdef _BSD_SOURCE
182 # define __USE_BSD 1
183 #endif
185 #ifdef _SVID_SOURCE
186 # define __USE_SVID 1
187 #endif
189 #ifdef _GNU_SOURCE
190 # define __USE_GNU 1
191 #endif
193 #if defined _REENTRANT || defined _THREAD_SAFE
194 # define __USE_REENTRANT 1
195 #endif
197 /* We do support the IEC 559 math functionality, real and complex. */
198 #define __STDC_IEC_559__ 1
199 #define __STDC_IEC_559_COMPLEX__ 1
201 /* This macro indicates that the installed library is the GNU C Library.
202 For historic reasons the value now is 6 and this will stay from now
203 on. The use of this variable is deprecated. Use __GLIBC__ and
204 __GLIBC_MINOR__ now (see below) when you want to test for a specific
205 GNU C library version and use the values in <gnu/lib-names.h> to get
206 the sonames of the shared libraries. */
207 #undef __GNU_LIBRARY__
208 #define __GNU_LIBRARY__ 6
210 /* Major and minor version number of the GNU C library package. Use
211 these macros to test for features in specific releases. */
212 #define __GLIBC__ 2
213 #define __GLIBC_MINOR__ 1
216 #if !defined __GNUC__ || __GNUC__ < 2
217 /* In GCC version 2, (__extension__ EXPR) will not complain
218 about GCC extensions used in EXPR under -ansi or -pedantic. */
219 # define __extension__
220 #endif
223 /* This is here only because every header file already includes this one. */
224 #ifndef __ASSEMBLER__
225 # include <sys/cdefs.h>
226 #endif
228 /* This is here only because every header file already includes this one. */
229 #ifndef _LIBC
230 /* Get the definitions of all the appropriate `__stub_FUNCTION' symbols.
231 <gnu/stubs.h> contains `#define __stub_FUNCTION' when FUNCTION is a stub
232 which will always return failure (and set errno to ENOSYS).
234 We avoid including <gnu/stubs.h> when compiling the C library itself to
235 avoid a dependency loop. stubs.h depends on every object file. If
236 this #include were done for the library source code, then every object
237 file would depend on stubs.h. */
239 # include <gnu/stubs.h>
240 #endif
242 #endif /* features.h */