cdefs.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  1. /* Copyright (C) 1992-2001, 2002, 2004, 2005, 2006, 2007
  2. Free Software Foundation, Inc.
  3. 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 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.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #ifndef _SYS_CDEFS_H
  16. #define _SYS_CDEFS_H 1
  17. /* We are almost always included from features.h. */
  18. #ifndef _FEATURES_H
  19. # include <features.h>
  20. #endif
  21. /* The GNU libc does not support any K&R compilers or the traditional mode
  22. of ISO C compilers anymore. Check for some of the combinations not
  23. anymore supported. */
  24. #if defined __GNUC__ && !defined __STDC__
  25. # error "You need a ISO C conforming compiler to use the glibc headers"
  26. #endif
  27. /* Some user header file might have defined this before. */
  28. #undef __P
  29. #undef __PMT
  30. #ifdef __GNUC__
  31. /* All functions, except those with callbacks or those that
  32. synchronize memory, are leaf functions. */
  33. # if __GNUC_PREREQ (4, 6) && !defined _LIBC
  34. # define __LEAF , __leaf__
  35. # define __LEAF_ATTR __attribute__ ((__leaf__))
  36. # else
  37. # define __LEAF
  38. # define __LEAF_ATTR
  39. # endif
  40. /* GCC can always grok prototypes. For C++ programs we add throw()
  41. to help it optimize the function calls. But this works only with
  42. gcc 2.8.x and egcs. For gcc 3.2 and up we even mark C functions
  43. as non-throwing using a function attribute since programs can use
  44. the -fexceptions options for C code as well. */
  45. # if !defined __cplusplus && __GNUC_PREREQ (3, 3)
  46. # define __THROW __attribute__ ((__nothrow__ __LEAF))
  47. # define __THROWNL __attribute__ ((__nothrow__))
  48. # define __NTH(fct) __attribute__ ((__nothrow__ __LEAF)) fct
  49. # else
  50. # if defined __cplusplus && __GNUC_PREREQ (2,8)
  51. /* Dynamic exception specification is deprecated since C++11, so
  52. we only use it when compiling for an earlier standard. */
  53. # if __cplusplus < 201103UL
  54. # define __THROW throw ()
  55. # else
  56. # define __THROW noexcept
  57. # endif
  58. # define __THROWNL __THROW
  59. # define __NTH(fct) __LEAF_ATTR fct __THROW
  60. # else
  61. # define __THROW
  62. # define __THROWNL
  63. # define __NTH(fct) fct
  64. # endif
  65. # endif
  66. #else /* Not GCC. */
  67. # define __inline /* No inline functions. */
  68. # define __THROW
  69. # define __THROWNL
  70. # define __NTH(fct) fct
  71. #endif /* GCC. */
  72. /* These two macros are not used in glibc anymore. They are kept here
  73. only because some other projects expect the macros to be defined. */
  74. #define __P(args) args
  75. #define __PMT(args) args
  76. /* For these things, GCC behaves the ANSI way normally,
  77. and the non-ANSI way under -traditional. */
  78. #define __CONCAT(x,y) x ## y
  79. #define __STRING(x) #x
  80. /* This is not a typedef so `const __ptr_t' does the right thing. */
  81. #define __ptr_t void *
  82. #define __long_double_t long double
  83. /* C++ needs to know that types and declarations are C, not C++. */
  84. #ifdef __cplusplus
  85. # define __BEGIN_DECLS extern "C" {
  86. # define __END_DECLS }
  87. #else
  88. # define __BEGIN_DECLS
  89. # define __END_DECLS
  90. #endif
  91. /* The standard library needs the functions from the ISO C90 standard
  92. in the std namespace. At the same time we want to be safe for
  93. future changes and we include the ISO C99 code in the non-standard
  94. namespace __c99. The C++ wrapper header take case of adding the
  95. definitions to the global namespace. */
  96. #if defined __cplusplus && defined _GLIBCPP_USE_NAMESPACES
  97. # define __BEGIN_NAMESPACE_STD namespace std {
  98. # define __END_NAMESPACE_STD }
  99. # define __USING_NAMESPACE_STD(name) using std::name;
  100. # define __BEGIN_NAMESPACE_C99 namespace __c99 {
  101. # define __END_NAMESPACE_C99 }
  102. # define __USING_NAMESPACE_C99(name) using __c99::name;
  103. #else
  104. /* For compatibility we do not add the declarations into any
  105. namespace. They will end up in the global namespace which is what
  106. old code expects. */
  107. # define __BEGIN_NAMESPACE_STD
  108. # define __END_NAMESPACE_STD
  109. # define __USING_NAMESPACE_STD(name)
  110. # define __BEGIN_NAMESPACE_C99
  111. # define __END_NAMESPACE_C99
  112. # define __USING_NAMESPACE_C99(name)
  113. #endif
  114. #if __GNUC_PREREQ (4,3)
  115. # define __warndecl(name, msg) \
  116. extern void name (void) __attribute__((__warning__ (msg)))
  117. # define __warnattr(msg) __attribute__((__warning__ (msg)))
  118. # define __errordecl(name, msg) \
  119. extern void name (void) __attribute__((__error__ (msg)))
  120. #else
  121. # define __warndecl(name, msg) extern void name (void)
  122. # define __warnattr(msg)
  123. # define __errordecl(name, msg) extern void name (void)
  124. #endif
  125. /* Support for flexible arrays. */
  126. #if __GNUC_PREREQ (2,97)
  127. /* GCC 2.97 supports C99 flexible array members. */
  128. # define __flexarr []
  129. #else
  130. # ifdef __GNUC__
  131. # define __flexarr [0]
  132. # else
  133. # if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
  134. # define __flexarr []
  135. # else
  136. /* Some other non-C99 compiler. Approximate with [1]. */
  137. # define __flexarr [1]
  138. # endif
  139. # endif
  140. #endif
  141. /* __asm__ ("xyz") is used throughout the headers to rename functions
  142. at the assembly language level. This is wrapped by the __REDIRECT
  143. macro, in order to support compilers that can do this some other
  144. way. When compilers don't support asm-names at all, we have to do
  145. preprocessor tricks instead (which don't have exactly the right
  146. semantics, but it's the best we can do).
  147. Example:
  148. int __REDIRECT(setpgrp, (__pid_t pid, __pid_t pgrp), setpgid); */
  149. #if defined __GNUC__ && __GNUC__ >= 2
  150. # define __REDIRECT(name, proto, alias) name proto __asm__ (__ASMNAME (#alias))
  151. # ifdef __cplusplus
  152. # define __REDIRECT_NTH(name, proto, alias) \
  153. name proto __THROW __asm__ (__ASMNAME (#alias))
  154. # define __REDIRECT_NTHNL(name, proto, alias) \
  155. name proto __THROWNL __asm__ (__ASMNAME (#alias))
  156. # else
  157. # define __REDIRECT_NTH(name, proto, alias) \
  158. name proto __asm__ (__ASMNAME (#alias)) __THROW
  159. # define __REDIRECT_NTHNL(name, proto, alias) \
  160. name proto __asm__ (__ASMNAME (#alias)) __THROWNL
  161. # endif
  162. # define __ASMNAME(cname) __ASMNAME2 (__USER_LABEL_PREFIX__, cname)
  163. # define __ASMNAME2(prefix, cname) __STRING (prefix) cname
  164. /*
  165. #elif __SOME_OTHER_COMPILER__
  166. # define __REDIRECT(name, proto, alias) name proto; \
  167. _Pragma("let " #name " = " #alias)
  168. */
  169. #endif
  170. /* GCC has various useful declarations that can be made with the
  171. `__attribute__' syntax. All of the ways we use this do fine if
  172. they are omitted for compilers that don't understand it. */
  173. #if !defined __GNUC__ || __GNUC__ < 2
  174. # define __attribute__(xyz) /* Ignore */
  175. #endif
  176. /* We make this a no-op unless it can be used as both a variable and
  177. a type attribute. gcc 2.8 is known to support both. */
  178. #if __GNUC_PREREQ (2,8)
  179. # define __attribute_aligned__(size) __attribute__ ((__aligned__ (size)))
  180. #else
  181. # define __attribute_aligned__(size) /* Ignore */
  182. #endif
  183. /* At some point during the gcc 2.96 development the `malloc' attribute
  184. for functions was introduced. We don't want to use it unconditionally
  185. (although this would be possible) since it generates warnings. */
  186. #if __GNUC_PREREQ (2,96)
  187. # define __attribute_malloc__ __attribute__ ((__malloc__))
  188. #else
  189. # define __attribute_malloc__ /* Ignore */
  190. #endif
  191. /* Tell the compiler which arguments to an allocation function
  192. indicate the size of the allocation. */
  193. #if __GNUC_PREREQ (4, 3)
  194. # define __attribute_alloc_size__(params) \
  195. __attribute__ ((__alloc_size__ params))
  196. #else
  197. # define __attribute_alloc_size__(params) /* Ignore. */
  198. #endif
  199. /* At some point during the gcc 2.96 development the `pure' attribute
  200. for functions was introduced. We don't want to use it unconditionally
  201. (although this would be possible) since it generates warnings. */
  202. #if __GNUC_PREREQ (2,96)
  203. # define __attribute_pure__ __attribute__ ((__pure__))
  204. #else
  205. # define __attribute_pure__ /* Ignore */
  206. #endif
  207. #if __GNUC_PREREQ (2,96)
  208. # define __attribute_const__ __attribute__((__const__))
  209. #else
  210. # define __attribute_const__ /* unimplemented */
  211. #endif
  212. /* At some point during the gcc 3.1 development the `used' attribute
  213. for functions was introduced. We don't want to use it unconditionally
  214. (although this would be possible) since it generates warnings. */
  215. #if __GNUC_PREREQ (3,1)
  216. # define __attribute_used__ __attribute__ ((__used__))
  217. # define __attribute_noinline__ __attribute__ ((__noinline__))
  218. #else
  219. # define __attribute_used__ __attribute__ ((__unused__))
  220. # define __attribute_noinline__ /* Ignore */
  221. #endif
  222. /* gcc allows marking deprecated functions. */
  223. #if __GNUC_PREREQ (3,2) && !defined(__UCLIBC_HIDE_DEPRECATED__)
  224. # define __attribute_deprecated__ __attribute__ ((__deprecated__))
  225. #else
  226. # define __attribute_deprecated__ /* Ignore */
  227. #endif
  228. /* At some point during the gcc 2.8 development the `format_arg' attribute
  229. for functions was introduced. We don't want to use it unconditionally
  230. (although this would be possible) since it generates warnings.
  231. If several `format_arg' attributes are given for the same function, in
  232. gcc-3.0 and older, all but the last one are ignored. In newer gccs,
  233. all designated arguments are considered. */
  234. #if __GNUC_PREREQ (2,8)
  235. # define __attribute_format_arg__(x) __attribute__ ((__format_arg__ (x)))
  236. #else
  237. # define __attribute_format_arg__(x) /* Ignore */
  238. #endif
  239. /* At some point during the gcc 2.97 development the `strfmon' format
  240. attribute for functions was introduced. We don't want to use it
  241. unconditionally (although this would be possible) since it
  242. generates warnings. */
  243. #if __GNUC_PREREQ (2,97)
  244. # define __attribute_format_strfmon__(a,b) \
  245. __attribute__ ((__format__ (__strfmon__, a, b)))
  246. #else
  247. # define __attribute_format_strfmon__(a,b) /* Ignore */
  248. #endif
  249. /* The nonull function attribute allows to mark pointer parameters which
  250. must not be NULL. */
  251. #if __GNUC_PREREQ (3,3)
  252. # define __nonnull(params) __attribute__ ((__nonnull__ params))
  253. #else
  254. # define __nonnull(params)
  255. #endif
  256. /* If fortification mode, we warn about unused results of certain
  257. function calls which can lead to problems. */
  258. #if __GNUC_PREREQ (3,4)
  259. # define __attribute_warn_unused_result__ \
  260. __attribute__ ((__warn_unused_result__))
  261. #else
  262. # define __attribute_warn_unused_result__ /* empty */
  263. #endif
  264. #ifndef __wur
  265. # define __wur /* Ignore */
  266. #endif
  267. /* Forces a function to be always inlined. */
  268. #if __GNUC_PREREQ (3,2)
  269. # define __always_inline __inline __attribute__ ((__always_inline__))
  270. #else
  271. # define __always_inline __inline
  272. #endif
  273. /* GCC 4.3 and above with -std=c99 or -std=gnu99 implements ISO C99
  274. inline semantics, unless -fgnu89-inline is used.
  275. For -std=gnu99, forcing gnu_inline attribute does not change behavior,
  276. but may silence spurious warnings (such as in GCC 4.2). */
  277. #if !defined __cplusplus || __GNUC_PREREQ (4,3) || __CLANG_PREREQ(8,0)
  278. # if defined __GNUC_STDC_INLINE__ || defined __GNUC_GNU_INLINE__ || defined __cplusplus
  279. # define __extern_inline extern __inline __attribute__ ((__gnu_inline__))
  280. # if __GNUC_PREREQ (4,3)
  281. # define __extern_always_inline \
  282. extern __always_inline __attribute__ ((__gnu_inline__, __artificial__))
  283. # else
  284. # define __extern_always_inline \
  285. extern __always_inline __attribute__ ((__gnu_inline__))
  286. # endif
  287. # else
  288. # define __extern_inline extern __inline
  289. # define __extern_always_inline extern __always_inline
  290. # endif
  291. #endif
  292. /* Undefine (also defined in libc-symbols.h). */
  293. #undef __attribute_copy__
  294. #if __GNUC_PREREQ (9, 0)
  295. /* Copies attributes from the declaration or type referenced by
  296. the argument. */
  297. # define __attribute_copy__(arg) __attribute__ ((__copy__ (arg)))
  298. #else
  299. # define __attribute_copy__(arg)
  300. #endif
  301. /* GCC 4.3 and above allow passing all anonymous arguments of an
  302. __extern_always_inline function to some other vararg function. */
  303. #if __GNUC_PREREQ (4,3)
  304. # define __va_arg_pack() __builtin_va_arg_pack ()
  305. # define __va_arg_pack_len() __builtin_va_arg_pack_len ()
  306. #endif
  307. /* It is possible to compile containing GCC extensions even if GCC is
  308. run in pedantic mode if the uses are carefully marked using the
  309. `__extension__' keyword. But this is not generally available before
  310. version 2.8. */
  311. #if !__GNUC_PREREQ (2,8)
  312. # define __extension__ /* Ignore */
  313. #endif
  314. /* __restrict is known in EGCS 1.2 and above. */
  315. #if !__GNUC_PREREQ (2,92)
  316. # define __restrict /* Ignore */
  317. #endif
  318. /* ISO C99 also allows to declare arrays as non-overlapping. The syntax is
  319. array_name[restrict]
  320. GCC 3.1 supports this. */
  321. #if __GNUC_PREREQ (3,1) && !defined __GNUG__
  322. # define __restrict_arr __restrict
  323. #else
  324. # ifdef __GNUC__
  325. # define __restrict_arr /* Not supported in old GCC. */
  326. # else
  327. # if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
  328. # define __restrict_arr restrict
  329. # else
  330. /* Some other non-C99 compiler. */
  331. # define __restrict_arr /* Not supported. */
  332. # endif
  333. # endif
  334. #endif
  335. #endif /* sys/cdefs.h */