cdefs.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  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. /* GCC can always grok prototypes. For C++ programs we add throw()
  32. to help it optimize the function calls. But this works only with
  33. gcc 2.8.x and egcs. For gcc 3.2 and up we even mark C functions
  34. as non-throwing using a function attribute since programs can use
  35. the -fexceptions options for C code as well. */
  36. # if !defined __cplusplus && __GNUC_PREREQ (3, 3)
  37. # define __THROW __attribute__ ((__nothrow__))
  38. # define __NTH(fct) __attribute__ ((__nothrow__)) fct
  39. # else
  40. # if defined __cplusplus && __GNUC_PREREQ (2,8)
  41. # define __THROW throw ()
  42. # define __NTH(fct) fct throw ()
  43. # else
  44. # define __THROW
  45. # define __NTH(fct) fct
  46. # endif
  47. # endif
  48. #else /* Not GCC. */
  49. # define __inline /* No inline functions. */
  50. # define __THROW
  51. # define __NTH(fct) fct
  52. #endif /* GCC. */
  53. /* These two macros are not used in glibc anymore. They are kept here
  54. only because some other projects expect the macros to be defined. */
  55. #define __P(args) args
  56. #define __PMT(args) args
  57. /* For these things, GCC behaves the ANSI way normally,
  58. and the non-ANSI way under -traditional. */
  59. #define __CONCAT(x,y) x ## y
  60. #define __STRING(x) #x
  61. /* This is not a typedef so `const __ptr_t' does the right thing. */
  62. #define __ptr_t void *
  63. #define __long_double_t long double
  64. /* C++ needs to know that types and declarations are C, not C++. */
  65. #ifdef __cplusplus
  66. # define __BEGIN_DECLS extern "C" {
  67. # define __END_DECLS }
  68. #else
  69. # define __BEGIN_DECLS
  70. # define __END_DECLS
  71. #endif
  72. /* The standard library needs the functions from the ISO C90 standard
  73. in the std namespace. At the same time we want to be safe for
  74. future changes and we include the ISO C99 code in the non-standard
  75. namespace __c99. The C++ wrapper header take case of adding the
  76. definitions to the global namespace. */
  77. #if defined __cplusplus && defined _GLIBCPP_USE_NAMESPACES
  78. # define __BEGIN_NAMESPACE_STD namespace std {
  79. # define __END_NAMESPACE_STD }
  80. # define __USING_NAMESPACE_STD(name) using std::name;
  81. # define __BEGIN_NAMESPACE_C99 namespace __c99 {
  82. # define __END_NAMESPACE_C99 }
  83. # define __USING_NAMESPACE_C99(name) using __c99::name;
  84. #else
  85. /* For compatibility we do not add the declarations into any
  86. namespace. They will end up in the global namespace which is what
  87. old code expects. */
  88. # define __BEGIN_NAMESPACE_STD
  89. # define __END_NAMESPACE_STD
  90. # define __USING_NAMESPACE_STD(name)
  91. # define __BEGIN_NAMESPACE_C99
  92. # define __END_NAMESPACE_C99
  93. # define __USING_NAMESPACE_C99(name)
  94. #endif
  95. /* Fortify support. */
  96. #define __bos(ptr) __builtin_object_size (ptr, __USE_FORTIFY_LEVEL > 1)
  97. #define __bos0(ptr) __builtin_object_size (ptr, 0)
  98. #if __GNUC_PREREQ (4,3)
  99. # define __warndecl(name, msg) \
  100. extern void name (void) __attribute__((__warning__ (msg)))
  101. # define __warnattr(msg) __attribute__((__warning__ (msg)))
  102. # define __errordecl(name, msg) \
  103. extern void name (void) __attribute__((__error__ (msg)))
  104. #else
  105. # define __warndecl(name, msg) extern void name (void)
  106. # define __warnattr(msg)
  107. # define __errordecl(name, msg) extern void name (void)
  108. #endif
  109. /* Support for flexible arrays. */
  110. #if __GNUC_PREREQ (2,97)
  111. /* GCC 2.97 supports C99 flexible array members. */
  112. # define __flexarr []
  113. #else
  114. # ifdef __GNUC__
  115. # define __flexarr [0]
  116. # else
  117. # if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
  118. # define __flexarr []
  119. # else
  120. /* Some other non-C99 compiler. Approximate with [1]. */
  121. # define __flexarr [1]
  122. # endif
  123. # endif
  124. #endif
  125. /* __asm__ ("xyz") is used throughout the headers to rename functions
  126. at the assembly language level. This is wrapped by the __REDIRECT
  127. macro, in order to support compilers that can do this some other
  128. way. When compilers don't support asm-names at all, we have to do
  129. preprocessor tricks instead (which don't have exactly the right
  130. semantics, but it's the best we can do).
  131. Example:
  132. int __REDIRECT(setpgrp, (__pid_t pid, __pid_t pgrp), setpgid); */
  133. #if defined __GNUC__ && __GNUC__ >= 2
  134. # define __REDIRECT(name, proto, alias) name proto __asm__ (__ASMNAME (#alias))
  135. # ifdef __cplusplus
  136. # define __REDIRECT_NTH(name, proto, alias) \
  137. name proto __THROW __asm__ (__ASMNAME (#alias))
  138. # else
  139. # define __REDIRECT_NTH(name, proto, alias) \
  140. name proto __asm__ (__ASMNAME (#alias)) __THROW
  141. # endif
  142. # define __ASMNAME(cname) __ASMNAME2 (__USER_LABEL_PREFIX__, cname)
  143. # define __ASMNAME2(prefix, cname) __STRING (prefix) cname
  144. /*
  145. #elif __SOME_OTHER_COMPILER__
  146. # define __REDIRECT(name, proto, alias) name proto; \
  147. _Pragma("let " #name " = " #alias)
  148. */
  149. #endif
  150. /* GCC has various useful declarations that can be made with the
  151. `__attribute__' syntax. All of the ways we use this do fine if
  152. they are omitted for compilers that don't understand it. */
  153. #if !defined __GNUC__ || __GNUC__ < 2
  154. # define __attribute__(xyz) /* Ignore */
  155. #endif
  156. /* We make this a no-op unless it can be used as both a variable and
  157. a type attribute. gcc 2.8 is known to support both. */
  158. #if __GNUC_PREREQ (2,8)
  159. # define __attribute_aligned__(size) __attribute__ ((__aligned__ (size)))
  160. #else
  161. # define __attribute_aligned__(size) /* Ignore */
  162. #endif
  163. /* At some point during the gcc 2.96 development the `malloc' attribute
  164. for functions was introduced. We don't want to use it unconditionally
  165. (although this would be possible) since it generates warnings. */
  166. #if __GNUC_PREREQ (2,96)
  167. # define __attribute_malloc__ __attribute__ ((__malloc__))
  168. #else
  169. # define __attribute_malloc__ /* Ignore */
  170. #endif
  171. /* At some point during the gcc 2.96 development the `pure' attribute
  172. for functions was introduced. We don't want to use it unconditionally
  173. (although this would be possible) since it generates warnings. */
  174. #if __GNUC_PREREQ (2,96)
  175. # define __attribute_pure__ __attribute__ ((__pure__))
  176. #else
  177. # define __attribute_pure__ /* Ignore */
  178. #endif
  179. /* At some point during the gcc 3.1 development the `used' attribute
  180. for functions was introduced. We don't want to use it unconditionally
  181. (although this would be possible) since it generates warnings. */
  182. #if __GNUC_PREREQ (3,1)
  183. # define __attribute_used__ __attribute__ ((__used__))
  184. # define __attribute_noinline__ __attribute__ ((__noinline__))
  185. #else
  186. # define __attribute_used__ __attribute__ ((__unused__))
  187. # define __attribute_noinline__ /* Ignore */
  188. #endif
  189. /* gcc allows marking deprecated functions. */
  190. #if __GNUC_PREREQ (3,2) && !defined(__UCLIBC_HIDE_DEPRECATED__)
  191. # define __attribute_deprecated__ __attribute__ ((__deprecated__))
  192. #else
  193. # define __attribute_deprecated__ /* Ignore */
  194. #endif
  195. /* At some point during the gcc 2.8 development the `format_arg' attribute
  196. for functions was introduced. We don't want to use it unconditionally
  197. (although this would be possible) since it generates warnings.
  198. If several `format_arg' attributes are given for the same function, in
  199. gcc-3.0 and older, all but the last one are ignored. In newer gccs,
  200. all designated arguments are considered. */
  201. #if __GNUC_PREREQ (2,8)
  202. # define __attribute_format_arg__(x) __attribute__ ((__format_arg__ (x)))
  203. #else
  204. # define __attribute_format_arg__(x) /* Ignore */
  205. #endif
  206. /* At some point during the gcc 2.97 development the `strfmon' format
  207. attribute for functions was introduced. We don't want to use it
  208. unconditionally (although this would be possible) since it
  209. generates warnings. */
  210. #if __GNUC_PREREQ (2,97)
  211. # define __attribute_format_strfmon__(a,b) \
  212. __attribute__ ((__format__ (__strfmon__, a, b)))
  213. #else
  214. # define __attribute_format_strfmon__(a,b) /* Ignore */
  215. #endif
  216. /* The nonull function attribute allows to mark pointer parameters which
  217. must not be NULL. */
  218. #if __GNUC_PREREQ (3,3)
  219. # define __nonnull(params) __attribute__ ((__nonnull__ params))
  220. #else
  221. # define __nonnull(params)
  222. #endif
  223. /* If fortification mode, we warn about unused results of certain
  224. function calls which can lead to problems. */
  225. #if __GNUC_PREREQ (3,4)
  226. # define __attribute_warn_unused_result__ \
  227. __attribute__ ((__warn_unused_result__))
  228. # if __USE_FORTIFY_LEVEL > 0
  229. # define __wur __attribute_warn_unused_result__
  230. # endif
  231. #else
  232. # define __attribute_warn_unused_result__ /* empty */
  233. #endif
  234. #ifndef __wur
  235. # define __wur /* Ignore */
  236. #endif
  237. /* Forces a function to be always inlined. */
  238. #if __GNUC_PREREQ (3,2)
  239. # define __always_inline __inline __attribute__ ((__always_inline__))
  240. #else
  241. # define __always_inline __inline
  242. #endif
  243. /* GCC 4.3 and above with -std=c99 or -std=gnu99 implements ISO C99
  244. inline semantics, unless -fgnu89-inline is used.
  245. For -std=gnu99, forcing gnu_inline attribute does not change behavior,
  246. but may silence spurious warnings (such as in GCC 4.2). */
  247. #if !defined __cplusplus || __GNUC_PREREQ (4,3)
  248. # if defined __GNUC_STDC_INLINE__ || defined __GNUC_GNU_INLINE__ || defined __cplusplus
  249. # define __extern_inline extern __inline __attribute__ ((__gnu_inline__))
  250. # if __GNUC_PREREQ (4,3)
  251. # define __extern_always_inline \
  252. extern __always_inline __attribute__ ((__gnu_inline__, __artificial__))
  253. # else
  254. # define __extern_always_inline \
  255. extern __always_inline __attribute__ ((__gnu_inline__))
  256. # endif
  257. # else
  258. # define __extern_inline extern __inline
  259. # define __extern_always_inline extern __always_inline
  260. # endif
  261. #endif
  262. /* GCC 4.3 and above allow passing all anonymous arguments of an
  263. __extern_always_inline function to some other vararg function. */
  264. #if __GNUC_PREREQ (4,3)
  265. # define __va_arg_pack() __builtin_va_arg_pack ()
  266. # define __va_arg_pack_len() __builtin_va_arg_pack_len ()
  267. #endif
  268. /* It is possible to compile containing GCC extensions even if GCC is
  269. run in pedantic mode if the uses are carefully marked using the
  270. `__extension__' keyword. But this is not generally available before
  271. version 2.8. */
  272. #if !__GNUC_PREREQ (2,8)
  273. # define __extension__ /* Ignore */
  274. #endif
  275. /* __restrict is known in EGCS 1.2 and above. */
  276. #if !__GNUC_PREREQ (2,92)
  277. # define __restrict /* Ignore */
  278. #endif
  279. /* ISO C99 also allows to declare arrays as non-overlapping. The syntax is
  280. array_name[restrict]
  281. GCC 3.1 supports this. */
  282. #if __GNUC_PREREQ (3,1) && !defined __GNUG__
  283. # define __restrict_arr __restrict
  284. #else
  285. # ifdef __GNUC__
  286. # define __restrict_arr /* Not supported in old GCC. */
  287. # else
  288. # if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
  289. # define __restrict_arr restrict
  290. # else
  291. /* Some other non-C99 compiler. */
  292. # define __restrict_arr /* Not supported. */
  293. # endif
  294. # endif
  295. #endif
  296. #endif /* sys/cdefs.h */