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