]> git.ipfire.org Git - thirdparty/glibc.git/blame - include/features.h
Enable at_quick_exit and quick_exit for ISO C11
[thirdparty/glibc.git] / include / features.h
CommitLineData
6392473f
UD
1/* Copyright (C) 1991-1993,1995-2007,2009,2010,2011
2 Free Software Foundation, Inc.
2c6fe0bd 3 This file is part of the GNU C Library.
28f540f4 4
2c6fe0bd 5 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
28f540f4 9
2c6fe0bd
UD
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 13 Lesser General Public License for more details.
28f540f4 14
41bdb6e2
AJ
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
28f540f4
RM
19
20#ifndef _FEATURES_H
28f540f4
RM
21#define _FEATURES_H 1
22
23/* These are defined by the user (or the compiler)
24 to specify the desired environment:
25
d38cd08c 26 __STRICT_ANSI__ ISO Standard C.
ec751a23 27 _ISOC99_SOURCE Extensions to ISO C89 from ISO C99.
d7809905 28 _ISOC11_SOURCE Extensions to ISO C99 from ISO C11.
28f540f4 29 _POSIX_SOURCE IEEE Std 1003.1.
6d52618b 30 _POSIX_C_SOURCE If ==1, like _POSIX_SOURCE; if >=2 add IEEE Std 1003.2;
118bad87 31 if >=199309L, add IEEE Std 1003.1b-1993;
7a80496f
UD
32 if >=199506L, add IEEE Std 1003.1c-1995;
33 if >=200112L, all of IEEE 1003.1-2004
3e6b0a28 34 if >=200809L, all of IEEE 1003.1-2008
a5a0310d 35 _XOPEN_SOURCE Includes POSIX and XPG things. Set to 500 if
925e31d9 36 Single Unix conformance is wanted, to 600 for the
3e6b0a28 37 sixth revision, to 700 for the seventh revision.
2c6fe0bd 38 _XOPEN_SOURCE_EXTENDED XPG things and X/Open Unix extensions.
dfd2257a
UD
39 _LARGEFILE_SOURCE Some more functions for correct standard I/O.
40 _LARGEFILE64_SOURCE Additional functionality from LFS for large files.
41 _FILE_OFFSET_BITS=N Select default filesystem interface.
d38cd08c
UD
42 _BSD_SOURCE ISO C, POSIX, and 4.3BSD things.
43 _SVID_SOURCE ISO C, POSIX, and SVID things.
0b8f25bb 44 _ATFILE_SOURCE Additional *at interfaces.
28f540f4 45 _GNU_SOURCE All of the above, plus GNU extensions.
ec4b0518
UD
46 _REENTRANT Select additionally reentrant object.
47 _THREAD_SAFE Same as _REENTRANT, often used by other systems.
b5cc329c
UD
48 _FORTIFY_SOURCE If set to numeric value > 0 additional security
49 measures are defined, according to level.
28f540f4
RM
50
51 The `-ansi' switch to the GNU C compiler defines __STRICT_ANSI__.
77586df3
UD
52 If none of these are defined, the default is to have _SVID_SOURCE,
53 _BSD_SOURCE, and _POSIX_SOURCE set to one and _POSIX_C_SOURCE set to
f85fb97b 54 200112L. If more than one of these are defined, they accumulate.
28f540f4 55 For example __STRICT_ANSI__, _POSIX_SOURCE and _POSIX_C_SOURCE
d38cd08c 56 together give you ISO C, 1003.1, and 1003.2, but nothing else.
28f540f4
RM
57
58 These are defined by this file and are used by the
59 header files to decide what to declare or define:
60
d7809905 61 __USE_ISOC11 Define ISO C11 things.
ec751a23 62 __USE_ISOC99 Define ISO C99 things.
087722b8 63 __USE_ISOC95 Define ISO C90 AMD1 (C95) things.
28f540f4
RM
64 __USE_POSIX Define IEEE Std 1003.1 things.
65 __USE_POSIX2 Define IEEE Std 1003.2 things.
4a582094
UD
66 __USE_POSIX199309 Define IEEE Std 1003.1, and .1b things.
67 __USE_POSIX199506 Define IEEE Std 1003.1, .1b, .1c and .1i things.
2c6fe0bd
UD
68 __USE_XOPEN Define XPG things.
69 __USE_XOPEN_EXTENDED Define X/Open Unix things.
a5a0310d 70 __USE_UNIX98 Define Single Unix V2 things.
925e31d9 71 __USE_XOPEN2K Define XPG6 things.
f095bb72 72 __USE_XOPEN2KXSI Define XPG6 XSI things.
81489b2e 73 __USE_XOPEN2K8 Define XPG7 things.
f095bb72 74 __USE_XOPEN2K8XSI Define XPG7 XSI things.
925e31d9 75 __USE_LARGEFILE Define correct standard I/O things.
dfd2257a
UD
76 __USE_LARGEFILE64 Define LFS things with separate names.
77 __USE_FILE_OFFSET64 Define 64bit interface as default.
28f540f4
RM
78 __USE_BSD Define 4.3BSD things.
79 __USE_SVID Define SVID things.
80 __USE_MISC Define things common to BSD and System V Unix.
0b8f25bb 81 __USE_ATFILE Define *at interfaces and AT_* constants for them.
28f540f4 82 __USE_GNU Define GNU extensions.
aa910907 83 __USE_REENTRANT Define reentrant/thread-safe *_r functions.
b5cc329c 84 __USE_FORTIFY_LEVEL Additional security measures used, according to level.
28f540f4
RM
85 __FAVOR_BSD Favor 4.3BSD things in cases of conflict.
86
d38cd08c
UD
87 The macros `__GNU_LIBRARY__', `__GLIBC__', and `__GLIBC_MINOR__' are
88 defined by this file unconditionally. `__GNU_LIBRARY__' is provided
89 only for compatibility. All new code should use the other symbols
90 to test for features.
28f540f4 91
28f540f4
RM
92 All macros listed above as possibly being defined by this file are
93 explicitly undefined if they are not explicitly defined.
94 Feature-test macros that are not defined by the user or compiler
95 but are implied by the other feature-test macros defined (or by the
96 lack of any definitions) are defined by the file. */
97
98
99/* Undefine everything, so we get a clean slate. */
d7809905 100#undef __USE_ISOC11
ec751a23 101#undef __USE_ISOC99
087722b8 102#undef __USE_ISOC95
8fd8ff3b 103#undef __USE_ISOCXX11
28f540f4
RM
104#undef __USE_POSIX
105#undef __USE_POSIX2
6d52618b 106#undef __USE_POSIX199309
4a582094 107#undef __USE_POSIX199506
2c6fe0bd
UD
108#undef __USE_XOPEN
109#undef __USE_XOPEN_EXTENDED
dfd2257a 110#undef __USE_UNIX98
24d6fe58 111#undef __USE_XOPEN2K
f095bb72 112#undef __USE_XOPEN2KXSI
3e6b0a28 113#undef __USE_XOPEN2K8
f095bb72 114#undef __USE_XOPEN2K8XSI
dfd2257a
UD
115#undef __USE_LARGEFILE
116#undef __USE_LARGEFILE64
117#undef __USE_FILE_OFFSET64
28f540f4
RM
118#undef __USE_BSD
119#undef __USE_SVID
120#undef __USE_MISC
0b8f25bb 121#undef __USE_ATFILE
28f540f4 122#undef __USE_GNU
aa910907 123#undef __USE_REENTRANT
b5cc329c 124#undef __USE_FORTIFY_LEVEL
28f540f4 125#undef __FAVOR_BSD
a1470b6f 126#undef __KERNEL_STRICT_NAMES
28f540f4 127
a1470b6f 128/* Suppress kernel-name space pollution unless user expressedly asks
2c6fe0bd 129 for it. */
a1470b6f
RM
130#ifndef _LOOSE_KERNEL_NAMES
131# define __KERNEL_STRICT_NAMES
132#endif
28f540f4 133
d38cd08c 134/* Always use ISO C things. */
28f540f4
RM
135#define __USE_ANSI 1
136
b5cc329c
UD
137/* Convenience macros to test the versions of glibc and gcc.
138 Use them like this:
139 #if __GNUC_PREREQ (2,8)
140 ... code requiring gcc 2.8 or later ...
141 #endif
142 Note - they won't work for gcc1 or glibc1, since the _MINOR macros
143 were not defined then. */
144#if defined __GNUC__ && defined __GNUC_MINOR__
145# define __GNUC_PREREQ(maj, min) \
146 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
147#else
148# define __GNUC_PREREQ(maj, min) 0
149#endif
150
28f540f4
RM
151
152/* If _BSD_SOURCE was defined by the user, favor BSD over POSIX. */
d38cd08c
UD
153#if defined _BSD_SOURCE && \
154 !(defined _POSIX_SOURCE || defined _POSIX_C_SOURCE || \
635bc2a2 155 defined _XOPEN_SOURCE || defined _GNU_SOURCE || defined _SVID_SOURCE)
2c6fe0bd 156# define __FAVOR_BSD 1
28f540f4
RM
157#endif
158
59dd8641
RM
159/* If _GNU_SOURCE was defined by the user, turn on all the other features. */
160#ifdef _GNU_SOURCE
e531ede5
UD
161# undef _ISOC95_SOURCE
162# define _ISOC95_SOURCE 1
ec751a23
UD
163# undef _ISOC99_SOURCE
164# define _ISOC99_SOURCE 1
d7809905
UD
165# undef _ISOC11_SOURCE
166# define _ISOC11_SOURCE 1
5107cf1d
UD
167# undef _POSIX_SOURCE
168# define _POSIX_SOURCE 1
169# undef _POSIX_C_SOURCE
3e6b0a28 170# define _POSIX_C_SOURCE 200809L
5107cf1d 171# undef _XOPEN_SOURCE
3e6b0a28 172# define _XOPEN_SOURCE 700
5107cf1d
UD
173# undef _XOPEN_SOURCE_EXTENDED
174# define _XOPEN_SOURCE_EXTENDED 1
dfd2257a
UD
175# undef _LARGEFILE64_SOURCE
176# define _LARGEFILE64_SOURCE 1
5107cf1d
UD
177# undef _BSD_SOURCE
178# define _BSD_SOURCE 1
179# undef _SVID_SOURCE
180# define _SVID_SOURCE 1
0b8f25bb
RM
181# undef _ATFILE_SOURCE
182# define _ATFILE_SOURCE 1
59dd8641 183#endif
28f540f4
RM
184
185/* If nothing (other than _GNU_SOURCE) is defined,
186 define _BSD_SOURCE and _SVID_SOURCE. */
ec751a23 187#if (!defined __STRICT_ANSI__ && !defined _ISOC99_SOURCE && \
2f6d1f1b 188 !defined _POSIX_SOURCE && !defined _POSIX_C_SOURCE && \
635bc2a2 189 !defined _XOPEN_SOURCE && !defined _BSD_SOURCE && !defined _SVID_SOURCE)
5107cf1d
UD
190# define _BSD_SOURCE 1
191# define _SVID_SOURCE 1
28f540f4
RM
192#endif
193
d7809905
UD
194/* This is to enable the ISO C11 extension. */
195#if (defined _ISOC11_SOURCE \
196 || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 201112L))
197
198/* This is to enable the ISO C99 extension. */
199#if (defined _ISOC99_SOURCE || defined _ISOC11_SOURCE \
47a81620 200 || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L))
ec751a23 201# define __USE_ISOC99 1
2f6d1f1b
UD
202#endif
203
087722b8 204/* This is to enable the ISO C90 Amendment 1:1995 extension. */
d7809905 205#if (defined _ISOC99_SOURCE || defined _ISOC11_SOURCE \
087722b8
UD
206 || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199409L))
207# define __USE_ISOC95 1
208#endif
209
8fd8ff3b
UD
210/* This is to enable compatibility for ISO C++11.
211
212 So far g++ does not provide a macro. Check the temporary macro for
213 now, too. */
214#if ((defined __cplusplus && __cplusplus >= 201103L) \
215 || defined __GXX_EXPERIMENTAL_CXX0X__)
216# define __USE_ISOCXX11 1
217#endif
218
6d52618b
UD
219/* If none of the ANSI/POSIX macros are defined, use POSIX.1 and POSIX.2
220 (and IEEE Std 1003.1b-1993 unless _XOPEN_SOURCE is defined). */
9cfe5381
RM
221#if ((!defined __STRICT_ANSI__ || (_XOPEN_SOURCE - 0) >= 500) && \
222 !defined _POSIX_SOURCE && !defined _POSIX_C_SOURCE)
5107cf1d 223# define _POSIX_SOURCE 1
925e31d9 224# if defined _XOPEN_SOURCE && (_XOPEN_SOURCE - 0) < 500
5107cf1d 225# define _POSIX_C_SOURCE 2
1676aaef 226# elif defined _XOPEN_SOURCE && (_XOPEN_SOURCE - 0) < 600
a334319f 227# define _POSIX_C_SOURCE 199506L
3e6b0a28 228# elif defined _XOPEN_SOURCE && (_XOPEN_SOURCE - 0) < 700
1676aaef 229# define _POSIX_C_SOURCE 200112L
3e6b0a28
UD
230# else
231# define _POSIX_C_SOURCE 200809L
5107cf1d 232# endif
2e6d6bac 233# define __USE_POSIX_IMPLICITLY 1
28f540f4
RM
234#endif
235
d38cd08c 236#if defined _POSIX_SOURCE || _POSIX_C_SOURCE >= 1 || defined _XOPEN_SOURCE
5107cf1d 237# define __USE_POSIX 1
28f540f4
RM
238#endif
239
d38cd08c 240#if defined _POSIX_C_SOURCE && _POSIX_C_SOURCE >= 2 || defined _XOPEN_SOURCE
5107cf1d 241# define __USE_POSIX2 1
28f540f4
RM
242#endif
243
9756dfe1
UD
244#if (_POSIX_C_SOURCE - 0) >= 199309L
245# define __USE_POSIX199309 1
6d52618b
UD
246#endif
247
4a582094
UD
248#if (_POSIX_C_SOURCE - 0) >= 199506L
249# define __USE_POSIX199506 1
250#endif
251
23ae6451
UD
252#if (_POSIX_C_SOURCE - 0) >= 200112L
253# define __USE_XOPEN2K 1
e531ede5
UD
254# undef __USE_ISOC95
255# define __USE_ISOC95 1
c163ee23
UD
256# undef __USE_ISOC99
257# define __USE_ISOC99 1
23ae6451
UD
258#endif
259
3e6b0a28
UD
260#if (_POSIX_C_SOURCE - 0) >= 200809L
261# define __USE_XOPEN2K8 1
262# undef _ATFILE_SOURCE
263# define _ATFILE_SOURCE 1
264#endif
265
2c6fe0bd 266#ifdef _XOPEN_SOURCE
5107cf1d 267# define __USE_XOPEN 1
219aa9e9 268# if (_XOPEN_SOURCE - 0) >= 500
5107cf1d 269# define __USE_XOPEN_EXTENDED 1
a5a0310d 270# define __USE_UNIX98 1
dfd2257a
UD
271# undef _LARGEFILE_SOURCE
272# define _LARGEFILE_SOURCE 1
925e31d9 273# if (_XOPEN_SOURCE - 0) >= 600
3e6b0a28
UD
274# if (_XOPEN_SOURCE - 0) >= 700
275# define __USE_XOPEN2K8 1
f095bb72 276# define __USE_XOPEN2K8XSI 1
3e6b0a28 277# endif
219aa9e9 278# define __USE_XOPEN2K 1
f095bb72 279# define __USE_XOPEN2KXSI 1
e531ede5
UD
280# undef __USE_ISOC95
281# define __USE_ISOC95 1
91bc38d0
UD
282# undef __USE_ISOC99
283# define __USE_ISOC99 1
219aa9e9 284# endif
a5a0310d
UD
285# else
286# ifdef _XOPEN_SOURCE_EXTENDED
287# define __USE_XOPEN_EXTENDED 1
288# endif
5107cf1d 289# endif
2c6fe0bd
UD
290#endif
291
dfd2257a
UD
292#ifdef _LARGEFILE_SOURCE
293# define __USE_LARGEFILE 1
294#endif
295
296#ifdef _LARGEFILE64_SOURCE
297# define __USE_LARGEFILE64 1
298#endif
299
300#if defined _FILE_OFFSET_BITS && _FILE_OFFSET_BITS == 64
301# define __USE_FILE_OFFSET64 1
302#endif
303
d38cd08c 304#if defined _BSD_SOURCE || defined _SVID_SOURCE
5107cf1d 305# define __USE_MISC 1
28f540f4
RM
306#endif
307
308#ifdef _BSD_SOURCE
5107cf1d 309# define __USE_BSD 1
28f540f4
RM
310#endif
311
312#ifdef _SVID_SOURCE
5107cf1d 313# define __USE_SVID 1
28f540f4
RM
314#endif
315
0b8f25bb
RM
316#ifdef _ATFILE_SOURCE
317# define __USE_ATFILE 1
318#endif
319
28f540f4 320#ifdef _GNU_SOURCE
5107cf1d 321# define __USE_GNU 1
28f540f4
RM
322#endif
323
d38cd08c 324#if defined _REENTRANT || defined _THREAD_SAFE
5107cf1d 325# define __USE_REENTRANT 1
aa910907
RM
326#endif
327
faa26ad4 328#if defined _FORTIFY_SOURCE && _FORTIFY_SOURCE > 0 \
7d4722e3 329 && __GNUC_PREREQ (4, 1) && defined __OPTIMIZE__ && __OPTIMIZE__ > 0
faa26ad4 330# if _FORTIFY_SOURCE > 1
a334319f 331# define __USE_FORTIFY_LEVEL 2
faa26ad4
RM
332# else
333# define __USE_FORTIFY_LEVEL 1
b5cc329c 334# endif
faa26ad4
RM
335#else
336# define __USE_FORTIFY_LEVEL 0
b5cc329c
UD
337#endif
338
d705269e
UD
339/* We do support the IEC 559 math functionality, real and complex. */
340#define __STDC_IEC_559__ 1
341#define __STDC_IEC_559_COMPLEX__ 1
28f540f4 342
95589177 343/* wchar_t uses ISO 10646-1 (2nd ed., published 2000-09-15) / Unicode 3.1. */
d3d99893 344#define __STDC_ISO_10646__ 200009L
91bc38d0 345
ba1ffaa1
UD
346/* This macro indicates that the installed library is the GNU C Library.
347 For historic reasons the value now is 6 and this will stay from now
348 on. The use of this variable is deprecated. Use __GLIBC__ and
349 __GLIBC_MINOR__ now (see below) when you want to test for a specific
350 GNU C library version and use the values in <gnu/lib-names.h> to get
351 the sonames of the shared libraries. */
352#undef __GNU_LIBRARY__
353#define __GNU_LIBRARY__ 6
354
355/* Major and minor version number of the GNU C library package. Use
356 these macros to test for features in specific releases. */
357#define __GLIBC__ 2
c0da14cd 358#define __GLIBC_MINOR__ 15
28f540f4 359
f042f18f
UD
360#define __GLIBC_PREREQ(maj, min) \
361 ((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min))
4360eafd 362
5224e27c
AJ
363/* Decide whether a compiler supports the long long datatypes. */
364#if defined __GNUC__ \
365 || (defined __PGI && defined __i386__ ) \
366 || (defined __INTEL_COMPILER && (defined __i386__ || defined __ia64__)) \
12518320 367 || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L)
5224e27c
AJ
368# define __GLIBC_HAVE_LONG_LONG 1
369#endif
370
28f540f4 371/* This is here only because every header file already includes this one. */
edf5b2d7 372#ifndef __ASSEMBLER__
95589177
UD
373# ifndef _SYS_CDEFS_H
374# include <sys/cdefs.h>
375# endif
01cad722
UD
376
377/* If we don't have __REDIRECT, prototypes will be missing if
378 __USE_FILE_OFFSET64 but not __USE_LARGEFILE[64]. */
379# if defined __USE_FILE_OFFSET64 && !defined __REDIRECT
4152ed15
UD
380# define __USE_LARGEFILE 1
381# define __USE_LARGEFILE64 1
01cad722
UD
382# endif
383
eedbbe58
UD
384#endif /* !ASSEMBLER */
385
386/* Decide whether we can define 'extern inline' functions in headers. */
07c416ed 387#if __GNUC_PREREQ (2, 7) && defined __OPTIMIZE__ \
de1c3ebb
UD
388 && !defined __OPTIMIZE_SIZE__ && !defined __NO_INLINE__ \
389 && defined __extern_inline
eedbbe58 390# define __USE_EXTERN_INLINES 1
edf5b2d7 391#endif
28f540f4 392
28f540f4 393
ce460d04
RM
394/* This is here only because every header file already includes this one.
395 Get the definitions of all the appropriate `__stub_FUNCTION' symbols.
396 <gnu/stubs.h> contains `#define __stub_FUNCTION' when FUNCTION is a stub
397 that will always return failure (and set errno to ENOSYS). */
398#include <gnu/stubs.h>
28f540f4 399
28f540f4 400
6ed0492f 401#endif /* features.h */