features.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488
  1. /* Copyright (C) 1991-2020 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, see
  13. <https://www.gnu.org/licenses/>. */
  14. #ifndef _FEATURES_H
  15. #define _FEATURES_H 1
  16. /* These are defined by the user (or the compiler)
  17. to specify the desired environment:
  18. __STRICT_ANSI__ ISO Standard C.
  19. _ISOC99_SOURCE Extensions to ISO C89 from ISO C99.
  20. _ISOC11_SOURCE Extensions to ISO C99 from ISO C11.
  21. _ISOC2X_SOURCE Extensions to ISO C99 from ISO C2X.
  22. __STDC_WANT_LIB_EXT2__
  23. Extensions to ISO C99 from TR 27431-2:2010.
  24. __STDC_WANT_IEC_60559_BFP_EXT__
  25. Extensions to ISO C11 from TS 18661-1:2014.
  26. __STDC_WANT_IEC_60559_FUNCS_EXT__
  27. Extensions to ISO C11 from TS 18661-4:2015.
  28. __STDC_WANT_IEC_60559_TYPES_EXT__
  29. Extensions to ISO C11 from TS 18661-3:2015.
  30. _POSIX_SOURCE IEEE Std 1003.1.
  31. _POSIX_C_SOURCE If ==1, like _POSIX_SOURCE; if >=2 add IEEE Std 1003.2;
  32. if >=199309L, add IEEE Std 1003.1b-1993;
  33. if >=199506L, add IEEE Std 1003.1c-1995;
  34. if >=200112L, all of IEEE 1003.1-2004
  35. if >=200809L, all of IEEE 1003.1-2008
  36. _XOPEN_SOURCE Includes POSIX and XPG things. Set to 500 if
  37. Single Unix conformance is wanted, to 600 for the
  38. sixth revision, to 700 for the seventh revision.
  39. _XOPEN_SOURCE_EXTENDED XPG things and X/Open Unix extensions.
  40. _LARGEFILE_SOURCE Some more functions for correct standard I/O.
  41. _LARGEFILE64_SOURCE Additional functionality from LFS for large files.
  42. _FILE_OFFSET_BITS=N Select default filesystem interface.
  43. _ATFILE_SOURCE Additional *at interfaces.
  44. _GNU_SOURCE All of the above, plus GNU extensions.
  45. _DEFAULT_SOURCE The default set of features (taking precedence over
  46. __STRICT_ANSI__).
  47. _FORTIFY_SOURCE Add security hardening to many library functions.
  48. Set to 1 or 2; 2 performs stricter checks than 1.
  49. _REENTRANT, _THREAD_SAFE
  50. Obsolete; equivalent to _POSIX_C_SOURCE=199506L.
  51. The `-ansi' switch to the GNU C compiler, and standards conformance
  52. options such as `-std=c99', define __STRICT_ANSI__. If none of
  53. these are defined, or if _DEFAULT_SOURCE is defined, the default is
  54. to have _POSIX_SOURCE set to one and _POSIX_C_SOURCE set to
  55. 200809L, as well as enabling miscellaneous functions from BSD and
  56. SVID. If more than one of these are defined, they accumulate. For
  57. example __STRICT_ANSI__, _POSIX_SOURCE and _POSIX_C_SOURCE together
  58. give you ISO C, 1003.1, and 1003.2, but nothing else.
  59. These are defined by this file and are used by the
  60. header files to decide what to declare or define:
  61. __GLIBC_USE (F) Define things from feature set F. This is defined
  62. to 1 or 0; the subsequent macros are either defined
  63. or undefined, and those tests should be moved to
  64. __GLIBC_USE.
  65. __USE_ISOC11 Define ISO C11 things.
  66. __USE_ISOC99 Define ISO C99 things.
  67. __USE_ISOC95 Define ISO C90 AMD1 (C95) things.
  68. __USE_ISOCXX11 Define ISO C++11 things.
  69. __USE_POSIX Define IEEE Std 1003.1 things.
  70. __USE_POSIX2 Define IEEE Std 1003.2 things.
  71. __USE_POSIX199309 Define IEEE Std 1003.1, and .1b things.
  72. __USE_POSIX199506 Define IEEE Std 1003.1, .1b, .1c and .1i things.
  73. __USE_XOPEN Define XPG things.
  74. __USE_XOPEN_EXTENDED Define X/Open Unix things.
  75. __USE_UNIX98 Define Single Unix V2 things.
  76. __USE_XOPEN2K Define XPG6 things.
  77. __USE_XOPEN2KXSI Define XPG6 XSI things.
  78. __USE_XOPEN2K8 Define XPG7 things.
  79. __USE_XOPEN2K8XSI Define XPG7 XSI things.
  80. __USE_LARGEFILE Define correct standard I/O things.
  81. __USE_LARGEFILE64 Define LFS things with separate names.
  82. __USE_FILE_OFFSET64 Define 64bit interface as default.
  83. __USE_MISC Define things from 4.3BSD or System V Unix.
  84. __USE_ATFILE Define *at interfaces and AT_* constants for them.
  85. __USE_GNU Define GNU extensions.
  86. __USE_FORTIFY_LEVEL Additional security measures used, according to level.
  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.
  91. All macros listed above as possibly being defined by this file are
  92. explicitly undefined if they are not explicitly defined.
  93. Feature-test macros that are not defined by the user or compiler
  94. but are implied by the other feature-test macros defined (or by the
  95. lack of any definitions) are defined by the file.
  96. ISO C feature test macros depend on the definition of the macro
  97. when an affected header is included, not when the first system
  98. header is included, and so they are handled in
  99. <bits/libc-header-start.h>, which does not have a multiple include
  100. guard. Feature test macros that can be handled from the first
  101. system header included are handled here. */
  102. /* Undefine everything, so we get a clean slate. */
  103. #undef __USE_ISOC11
  104. #undef __USE_ISOC99
  105. #undef __USE_ISOC95
  106. #undef __USE_ISOCXX11
  107. #undef __USE_POSIX
  108. #undef __USE_POSIX2
  109. #undef __USE_POSIX199309
  110. #undef __USE_POSIX199506
  111. #undef __USE_XOPEN
  112. #undef __USE_XOPEN_EXTENDED
  113. #undef __USE_UNIX98
  114. #undef __USE_XOPEN2K
  115. #undef __USE_XOPEN2KXSI
  116. #undef __USE_XOPEN2K8
  117. #undef __USE_XOPEN2K8XSI
  118. #undef __USE_LARGEFILE
  119. #undef __USE_LARGEFILE64
  120. #undef __USE_FILE_OFFSET64
  121. #undef __USE_MISC
  122. #undef __USE_ATFILE
  123. #undef __USE_GNU
  124. #undef __USE_FORTIFY_LEVEL
  125. #undef __KERNEL_STRICT_NAMES
  126. #undef __GLIBC_USE_ISOC2X
  127. #undef __GLIBC_USE_DEPRECATED_GETS
  128. #undef __GLIBC_USE_DEPRECATED_SCANF
  129. /* Suppress kernel-name space pollution unless user expressedly asks
  130. for it. */
  131. #ifndef _LOOSE_KERNEL_NAMES
  132. # define __KERNEL_STRICT_NAMES
  133. #endif
  134. /* Convenience macro to test the version of gcc.
  135. Use like this:
  136. #if __GNUC_PREREQ (2,8)
  137. ... code requiring gcc 2.8 or later ...
  138. #endif
  139. Note: only works for GCC 2.0 and later, because __GNUC_MINOR__ was
  140. added in 2.0. */
  141. #if defined __GNUC__ && defined __GNUC_MINOR__
  142. # define __GNUC_PREREQ(maj, min) \
  143. ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
  144. #else
  145. # define __GNUC_PREREQ(maj, min) 0
  146. #endif
  147. /* Similarly for clang. Features added to GCC after version 4.2 may
  148. or may not also be available in clang, and clang's definitions of
  149. __GNUC(_MINOR)__ are fixed at 4 and 2 respectively. Not all such
  150. features can be queried via __has_extension/__has_feature. */
  151. #if defined __clang_major__ && defined __clang_minor__
  152. # define __glibc_clang_prereq(maj, min) \
  153. ((__clang_major__ << 16) + __clang_minor__ >= ((maj) << 16) + (min))
  154. #else
  155. # define __glibc_clang_prereq(maj, min) 0
  156. #endif
  157. /* Whether to use feature set F. */
  158. #define __GLIBC_USE(F) __GLIBC_USE_ ## F
  159. /* _BSD_SOURCE and _SVID_SOURCE are deprecated aliases for
  160. _DEFAULT_SOURCE. If _DEFAULT_SOURCE is present we do not
  161. issue a warning; the expectation is that the source is being
  162. transitioned to use the new macro. */
  163. #if (defined _BSD_SOURCE || defined _SVID_SOURCE) \
  164. && !defined _DEFAULT_SOURCE
  165. # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE"
  166. # undef _DEFAULT_SOURCE
  167. # define _DEFAULT_SOURCE 1
  168. #endif
  169. /* If _GNU_SOURCE was defined by the user, turn on all the other features. */
  170. #ifdef _GNU_SOURCE
  171. # undef _ISOC95_SOURCE
  172. # define _ISOC95_SOURCE 1
  173. # undef _ISOC99_SOURCE
  174. # define _ISOC99_SOURCE 1
  175. # undef _ISOC11_SOURCE
  176. # define _ISOC11_SOURCE 1
  177. # undef _ISOC2X_SOURCE
  178. # define _ISOC2X_SOURCE 1
  179. # undef _POSIX_SOURCE
  180. # define _POSIX_SOURCE 1
  181. # undef _POSIX_C_SOURCE
  182. # define _POSIX_C_SOURCE 200809L
  183. # undef _XOPEN_SOURCE
  184. # define _XOPEN_SOURCE 700
  185. # undef _XOPEN_SOURCE_EXTENDED
  186. # define _XOPEN_SOURCE_EXTENDED 1
  187. # undef _LARGEFILE64_SOURCE
  188. # define _LARGEFILE64_SOURCE 1
  189. # undef _DEFAULT_SOURCE
  190. # define _DEFAULT_SOURCE 1
  191. # undef _ATFILE_SOURCE
  192. # define _ATFILE_SOURCE 1
  193. #endif
  194. /* If nothing (other than _GNU_SOURCE and _DEFAULT_SOURCE) is defined,
  195. define _DEFAULT_SOURCE. */
  196. #if (defined _DEFAULT_SOURCE \
  197. || (!defined __STRICT_ANSI__ \
  198. && !defined _ISOC99_SOURCE && !defined _ISOC11_SOURCE \
  199. && !defined _ISOC2X_SOURCE \
  200. && !defined _POSIX_SOURCE && !defined _POSIX_C_SOURCE \
  201. && !defined _XOPEN_SOURCE))
  202. # undef _DEFAULT_SOURCE
  203. # define _DEFAULT_SOURCE 1
  204. #endif
  205. /* This is to enable the ISO C2X extension. */
  206. #if (defined _ISOC2X_SOURCE \
  207. || (defined __STDC_VERSION__ && __STDC_VERSION__ > 201710L))
  208. # define __GLIBC_USE_ISOC2X 1
  209. #else
  210. # define __GLIBC_USE_ISOC2X 0
  211. #endif
  212. /* This is to enable the ISO C11 extension. */
  213. #if (defined _ISOC11_SOURCE || defined _ISOC2X_SOURCE \
  214. || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 201112L))
  215. # define __USE_ISOC11 1
  216. #endif
  217. /* This is to enable the ISO C99 extension. */
  218. #if (defined _ISOC99_SOURCE || defined _ISOC11_SOURCE \
  219. || defined _ISOC2X_SOURCE \
  220. || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L))
  221. # define __USE_ISOC99 1
  222. #endif
  223. /* This is to enable the ISO C90 Amendment 1:1995 extension. */
  224. #if (defined _ISOC99_SOURCE || defined _ISOC11_SOURCE \
  225. || defined _ISOC2X_SOURCE \
  226. || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199409L))
  227. # define __USE_ISOC95 1
  228. #endif
  229. #ifdef __cplusplus
  230. /* This is to enable compatibility for ISO C++17. */
  231. # if __cplusplus >= 201703L
  232. # define __USE_ISOC11 1
  233. # endif
  234. /* This is to enable compatibility for ISO C++11.
  235. Check the temporary macro for now, too. */
  236. # if __cplusplus >= 201103L || defined __GXX_EXPERIMENTAL_CXX0X__
  237. # define __USE_ISOCXX11 1
  238. # define __USE_ISOC99 1
  239. # endif
  240. #endif
  241. /* If none of the ANSI/POSIX macros are defined, or if _DEFAULT_SOURCE
  242. is defined, use POSIX.1-2008 (or another version depending on
  243. _XOPEN_SOURCE). */
  244. #ifdef _DEFAULT_SOURCE
  245. # if !defined _POSIX_SOURCE && !defined _POSIX_C_SOURCE
  246. # define __USE_POSIX_IMPLICITLY 1
  247. # endif
  248. # undef _POSIX_SOURCE
  249. # define _POSIX_SOURCE 1
  250. # undef _POSIX_C_SOURCE
  251. # define _POSIX_C_SOURCE 200809L
  252. #endif
  253. #if ((!defined __STRICT_ANSI__ \
  254. || (defined _XOPEN_SOURCE && (_XOPEN_SOURCE - 0) >= 500)) \
  255. && !defined _POSIX_SOURCE && !defined _POSIX_C_SOURCE)
  256. # define _POSIX_SOURCE 1
  257. # if defined _XOPEN_SOURCE && (_XOPEN_SOURCE - 0) < 500
  258. # define _POSIX_C_SOURCE 2
  259. # elif defined _XOPEN_SOURCE && (_XOPEN_SOURCE - 0) < 600
  260. # define _POSIX_C_SOURCE 199506L
  261. # elif defined _XOPEN_SOURCE && (_XOPEN_SOURCE - 0) < 700
  262. # define _POSIX_C_SOURCE 200112L
  263. # else
  264. # define _POSIX_C_SOURCE 200809L
  265. # endif
  266. # define __USE_POSIX_IMPLICITLY 1
  267. #endif
  268. /* Some C libraries once required _REENTRANT and/or _THREAD_SAFE to be
  269. defined in all multithreaded code. GNU libc has not required this
  270. for many years. We now treat them as compatibility synonyms for
  271. _POSIX_C_SOURCE=199506L, which is the earliest level of POSIX with
  272. comprehensive support for multithreaded code. Using them never
  273. lowers the selected level of POSIX conformance, only raises it. */
  274. #if ((!defined _POSIX_C_SOURCE || (_POSIX_C_SOURCE - 0) < 199506L) \
  275. && (defined _REENTRANT || defined _THREAD_SAFE))
  276. # define _POSIX_SOURCE 1
  277. # undef _POSIX_C_SOURCE
  278. # define _POSIX_C_SOURCE 199506L
  279. #endif
  280. #if (defined _POSIX_SOURCE \
  281. || (defined _POSIX_C_SOURCE && _POSIX_C_SOURCE >= 1) \
  282. || defined _XOPEN_SOURCE)
  283. # define __USE_POSIX 1
  284. #endif
  285. #if defined _POSIX_C_SOURCE && _POSIX_C_SOURCE >= 2 || defined _XOPEN_SOURCE
  286. # define __USE_POSIX2 1
  287. #endif
  288. #if defined _POSIX_C_SOURCE && (_POSIX_C_SOURCE - 0) >= 199309L
  289. # define __USE_POSIX199309 1
  290. #endif
  291. #if defined _POSIX_C_SOURCE && (_POSIX_C_SOURCE - 0) >= 199506L
  292. # define __USE_POSIX199506 1
  293. #endif
  294. #if defined _POSIX_C_SOURCE && (_POSIX_C_SOURCE - 0) >= 200112L
  295. # define __USE_XOPEN2K 1
  296. # undef __USE_ISOC95
  297. # define __USE_ISOC95 1
  298. # undef __USE_ISOC99
  299. # define __USE_ISOC99 1
  300. #endif
  301. #if defined _POSIX_C_SOURCE && (_POSIX_C_SOURCE - 0) >= 200809L
  302. # define __USE_XOPEN2K8 1
  303. # undef _ATFILE_SOURCE
  304. # define _ATFILE_SOURCE 1
  305. #endif
  306. #ifdef _XOPEN_SOURCE
  307. # define __USE_XOPEN 1
  308. # if (_XOPEN_SOURCE - 0) >= 500
  309. # define __USE_XOPEN_EXTENDED 1
  310. # define __USE_UNIX98 1
  311. # undef _LARGEFILE_SOURCE
  312. # define _LARGEFILE_SOURCE 1
  313. # if (_XOPEN_SOURCE - 0) >= 600
  314. # if (_XOPEN_SOURCE - 0) >= 700
  315. # define __USE_XOPEN2K8 1
  316. # define __USE_XOPEN2K8XSI 1
  317. # endif
  318. # define __USE_XOPEN2K 1
  319. # define __USE_XOPEN2KXSI 1
  320. # undef __USE_ISOC95
  321. # define __USE_ISOC95 1
  322. # undef __USE_ISOC99
  323. # define __USE_ISOC99 1
  324. # endif
  325. # else
  326. # ifdef _XOPEN_SOURCE_EXTENDED
  327. # define __USE_XOPEN_EXTENDED 1
  328. # endif
  329. # endif
  330. #endif
  331. #ifdef _LARGEFILE_SOURCE
  332. # define __USE_LARGEFILE 1
  333. #endif
  334. #ifdef _LARGEFILE64_SOURCE
  335. # define __USE_LARGEFILE64 1
  336. #endif
  337. #if defined _FILE_OFFSET_BITS && _FILE_OFFSET_BITS == 64
  338. # define __USE_FILE_OFFSET64 1
  339. #endif
  340. #if defined _DEFAULT_SOURCE
  341. # define __USE_MISC 1
  342. #endif
  343. #ifdef _ATFILE_SOURCE
  344. # define __USE_ATFILE 1
  345. #endif
  346. #ifdef _GNU_SOURCE
  347. # define __USE_GNU 1
  348. #endif
  349. #if defined _FORTIFY_SOURCE && _FORTIFY_SOURCE > 0 \
  350. && __GNUC_PREREQ (4, 1) && defined __OPTIMIZE__ && __OPTIMIZE__ > 0
  351. # if _FORTIFY_SOURCE > 1
  352. # define __USE_FORTIFY_LEVEL 2
  353. # else
  354. # define __USE_FORTIFY_LEVEL 1
  355. # endif
  356. #else
  357. # define __USE_FORTIFY_LEVEL 0
  358. #endif
  359. /* The function 'gets' existed in C89, but is impossible to use
  360. safely. It has been removed from ISO C11 and ISO C++14. Note: for
  361. compatibility with various implementations of <cstdio>, this test
  362. must consider only the value of __cplusplus when compiling C++. */
  363. #if defined __cplusplus ? __cplusplus >= 201402L : defined __USE_ISOC11
  364. # define __GLIBC_USE_DEPRECATED_GETS 0
  365. #else
  366. # define __GLIBC_USE_DEPRECATED_GETS 1
  367. #endif
  368. /* GNU formerly extended the scanf functions with modified format
  369. specifiers %as, %aS, and %a[...] that allocate a buffer for the
  370. input using malloc. This extension conflicts with ISO C99, which
  371. defines %a as a standalone format specifier that reads a floating-
  372. point number; moreover, POSIX.1-2008 provides the same feature
  373. using the modifier letter 'm' instead (%ms, %mS, %m[...]).
  374. We now follow C99 unless GNU extensions are active and the compiler
  375. is specifically in C89 or C++98 mode (strict or not). For
  376. instance, with GCC, -std=gnu11 will have C99-compliant scanf with
  377. or without -D_GNU_SOURCE, but -std=c89 -D_GNU_SOURCE will have the
  378. old extension. */
  379. #if (defined __USE_GNU \
  380. && (defined __cplusplus \
  381. ? (__cplusplus < 201103L && !defined __GXX_EXPERIMENTAL_CXX0X__) \
  382. : (!defined __STDC_VERSION__ || __STDC_VERSION__ < 199901L)))
  383. # define __GLIBC_USE_DEPRECATED_SCANF 1
  384. #else
  385. # define __GLIBC_USE_DEPRECATED_SCANF 0
  386. #endif
  387. /* Get definitions of __STDC_* predefined macros, if the compiler has
  388. not preincluded this header automatically. */
  389. #include <stdc-predef.h>
  390. /* This macro indicates that the installed library is the GNU C Library.
  391. For historic reasons the value now is 6 and this will stay from now
  392. on. The use of this variable is deprecated. Use __GLIBC__ and
  393. __GLIBC_MINOR__ now (see below) when you want to test for a specific
  394. GNU C library version and use the values in <gnu/lib-names.h> to get
  395. the sonames of the shared libraries. */
  396. #undef __GNU_LIBRARY__
  397. #define __GNU_LIBRARY__ 6
  398. /* Major and minor version number of the GNU C library package. Use
  399. these macros to test for features in specific releases. */
  400. #define __GLIBC__ 2
  401. #define __GLIBC_MINOR__ 31
  402. #define __GLIBC_PREREQ(maj, min) \
  403. ((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min))
  404. /* This is here only because every header file already includes this one. */
  405. #ifndef __ASSEMBLER__
  406. # ifndef _SYS_CDEFS_H
  407. # include <sys/cdefs.h>
  408. # endif
  409. /* If we don't have __REDIRECT, prototypes will be missing if
  410. __USE_FILE_OFFSET64 but not __USE_LARGEFILE[64]. */
  411. # if defined __USE_FILE_OFFSET64 && !defined __REDIRECT
  412. # define __USE_LARGEFILE 1
  413. # define __USE_LARGEFILE64 1
  414. # endif
  415. #endif /* !ASSEMBLER */
  416. /* Decide whether we can define 'extern inline' functions in headers. */
  417. #if __GNUC_PREREQ (2, 7) && defined __OPTIMIZE__ \
  418. && !defined __OPTIMIZE_SIZE__ && !defined __NO_INLINE__ \
  419. && defined __extern_inline
  420. # define __USE_EXTERN_INLINES 1
  421. #endif
  422. /* This is here only because every header file already includes this one.
  423. Get the definitions of all the appropriate `__stub_FUNCTION' symbols.
  424. <gnu/stubs.h> contains `#define __stub_FUNCTION' when FUNCTION is a stub
  425. that will always return failure (and set errno to ENOSYS). */
  426. #include <gnu/stubs.h>
  427. #endif /* features.h */