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