cdefs.h 12 KB

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