Xfuncproto.h 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. /* Xfuncproto.h. Generated from Xfuncproto.h.in by configure. */
  2. /*
  3. *
  4. Copyright 1989, 1991, 1998 The Open Group
  5. Permission to use, copy, modify, distribute, and sell this software and its
  6. documentation for any purpose is hereby granted without fee, provided that
  7. the above copyright notice appear in all copies and that both that
  8. copyright notice and this permission notice appear in supporting
  9. documentation.
  10. The above copyright notice and this permission notice shall be included in
  11. all copies or substantial portions of the Software.
  12. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  13. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  14. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  15. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  16. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  17. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  18. Except as contained in this notice, the name of The Open Group shall not be
  19. used in advertising or otherwise to promote the sale, use or other dealings
  20. in this Software without prior written authorization from The Open Group.
  21. *
  22. */
  23. /* Definitions to make function prototypes manageable */
  24. #ifndef _XFUNCPROTO_H_
  25. #define _XFUNCPROTO_H_
  26. #ifndef NeedFunctionPrototypes
  27. #define NeedFunctionPrototypes 1
  28. #endif /* NeedFunctionPrototypes */
  29. #ifndef NeedVarargsPrototypes
  30. #define NeedVarargsPrototypes 1
  31. #endif /* NeedVarargsPrototypes */
  32. #if NeedFunctionPrototypes
  33. #ifndef NeedNestedPrototypes
  34. #define NeedNestedPrototypes 1
  35. #endif /* NeedNestedPrototypes */
  36. #ifndef _Xconst
  37. #define _Xconst const
  38. #endif /* _Xconst */
  39. /* Function prototype configuration (see configure for more info) */
  40. #ifndef NARROWPROTO
  41. #define NARROWPROTO /**/
  42. #endif
  43. #ifndef FUNCPROTO
  44. #define FUNCPROTO 15
  45. #endif
  46. #ifndef NeedWidePrototypes
  47. #ifdef NARROWPROTO
  48. #define NeedWidePrototypes 0
  49. #else
  50. #define NeedWidePrototypes 1 /* default to make interropt. easier */
  51. #endif
  52. #endif /* NeedWidePrototypes */
  53. #endif /* NeedFunctionPrototypes */
  54. #ifndef _XFUNCPROTOBEGIN
  55. #if defined(__cplusplus) || defined(c_plusplus) /* for C++ V2.0 */
  56. #define _XFUNCPROTOBEGIN extern "C" { /* do not leave open across includes */
  57. #define _XFUNCPROTOEND }
  58. #else
  59. #define _XFUNCPROTOBEGIN
  60. #define _XFUNCPROTOEND
  61. #endif
  62. #endif /* _XFUNCPROTOBEGIN */
  63. /* http://clang.llvm.org/docs/LanguageExtensions.html#has-attribute */
  64. #ifndef __has_attribute
  65. # define __has_attribute(x) 0 /* Compatibility with non-clang compilers. */
  66. #endif
  67. /* Added in X11R6.9, so available in any version of modular xproto */
  68. #if __has_attribute(__sentinel__) || (defined(__GNUC__) && (__GNUC__ >= 4))
  69. # define _X_SENTINEL(x) __attribute__ ((__sentinel__(x)))
  70. #else
  71. # define _X_SENTINEL(x)
  72. #endif /* GNUC >= 4 */
  73. /* Added in X11R6.9, so available in any version of modular xproto */
  74. #if (__has_attribute(visibility) || (defined(__GNUC__) && (__GNUC__ >= 4))) \
  75. && !defined(__CYGWIN__) && !defined(__MINGW32__)
  76. # define _X_EXPORT __attribute__((visibility("default")))
  77. # define _X_HIDDEN __attribute__((visibility("hidden")))
  78. # define _X_INTERNAL __attribute__((visibility("internal")))
  79. #elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x550)
  80. # define _X_EXPORT __global
  81. # define _X_HIDDEN __hidden
  82. # define _X_INTERNAL __hidden
  83. #else /* not gcc >= 4 and not Sun Studio >= 8 */
  84. # define _X_EXPORT
  85. # define _X_HIDDEN
  86. # define _X_INTERNAL
  87. #endif /* GNUC >= 4 */
  88. /* Branch prediction hints for individual conditionals */
  89. /* requires xproto >= 7.0.9 */
  90. #if defined(__GNUC__) && ((__GNUC__ * 100 + __GNUC_MINOR__) >= 303)
  91. # define _X_LIKELY(x) __builtin_expect(!!(x), 1)
  92. # define _X_UNLIKELY(x) __builtin_expect(!!(x), 0)
  93. #else /* not gcc >= 3.3 */
  94. # define _X_LIKELY(x) (x)
  95. # define _X_UNLIKELY(x) (x)
  96. #endif
  97. /* Bulk branch prediction hints via marking error path functions as "cold" */
  98. /* requires xproto >= 7.0.25 */
  99. #if __has_attribute(__cold__) || \
  100. (defined(__GNUC__) && ((__GNUC__ * 100 + __GNUC_MINOR__) >= 403)) /* 4.3+ */
  101. # define _X_COLD __attribute__((__cold__))
  102. #else
  103. # define _X_COLD /* nothing */
  104. #endif
  105. /* Added in X11R6.9, so available in any version of modular xproto */
  106. #if __has_attribute(deprecated) \
  107. || (defined(__GNUC__) && ((__GNUC__ * 100 + __GNUC_MINOR__) >= 301)) \
  108. || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x5130))
  109. # define _X_DEPRECATED __attribute__((deprecated))
  110. #else /* not gcc >= 3.1 */
  111. # define _X_DEPRECATED
  112. #endif
  113. /* requires xproto >= 7.0.17 */
  114. #if __has_attribute(noreturn) \
  115. || (defined(__GNUC__) && ((__GNUC__ * 100 + __GNUC_MINOR__) >= 205)) \
  116. || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))
  117. # define _X_NORETURN __attribute((noreturn))
  118. #else
  119. # define _X_NORETURN
  120. #endif /* GNUC */
  121. /* Added in X11R6.9, so available in any version of modular xproto */
  122. #if __has_attribute(__format__) \
  123. || defined(__GNUC__) && ((__GNUC__ * 100 + __GNUC_MINOR__) >= 203)
  124. # define _X_ATTRIBUTE_PRINTF(x,y) __attribute__((__format__(__printf__,x,y)))
  125. #else /* not gcc >= 2.3 */
  126. # define _X_ATTRIBUTE_PRINTF(x,y)
  127. #endif
  128. /* requires xproto >= 7.0.22 - since this uses either gcc or C99 variable
  129. argument macros, must be only used inside #ifdef _X_NONNULL guards, as
  130. many legacy X clients are compiled in C89 mode still. */
  131. #if __has_attribute(nonnull) \
  132. && defined(__STDC_VERSION__) && (__STDC_VERSION__ - 0 >= 199901L) /* C99 */
  133. #define _X_NONNULL(...) __attribute__((nonnull(__VA_ARGS__)))
  134. #elif __has_attribute(nonnull) \
  135. || defined(__GNUC__) && ((__GNUC__ * 100 + __GNUC_MINOR__) >= 303)
  136. #define _X_NONNULL(args...) __attribute__((nonnull(args)))
  137. #elif defined(__STDC_VERSION__) && (__STDC_VERSION__ - 0 >= 199901L) /* C99 */
  138. #define _X_NONNULL(...) /* */
  139. #endif
  140. /* requires xproto >= 7.0.22 */
  141. #if __has_attribute(__unused__) \
  142. || defined(__GNUC__) && ((__GNUC__ * 100 + __GNUC_MINOR__) >= 205)
  143. #define _X_UNUSED __attribute__((__unused__))
  144. #else
  145. #define _X_UNUSED /* */
  146. #endif
  147. /* C99 keyword "inline" or equivalent extensions in pre-C99 compilers */
  148. /* requires xproto >= 7.0.9
  149. (introduced in 7.0.8 but didn't support all compilers until 7.0.9) */
  150. #if defined(inline) /* assume autoconf set it correctly */ || \
  151. (defined(__STDC_VERSION__) && (__STDC_VERSION__ - 0 >= 199901L)) /* C99 */ || \
  152. (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x550))
  153. # define _X_INLINE inline
  154. #elif defined(__GNUC__) && !defined(__STRICT_ANSI__) /* gcc w/C89+extensions */
  155. # define _X_INLINE __inline__
  156. #else
  157. # define _X_INLINE
  158. #endif
  159. /* C99 keyword "restrict" or equivalent extensions in pre-C99 compilers */
  160. /* requires xproto >= 7.0.21 */
  161. #ifndef _X_RESTRICT_KYWD
  162. # if defined(restrict) /* assume autoconf set it correctly */ || \
  163. (defined(__STDC_VERSION__) && (__STDC_VERSION__ - 0 >= 199901L) /* C99 */ \
  164. && !defined(__cplusplus)) /* Workaround g++ issue on Solaris */
  165. # define _X_RESTRICT_KYWD restrict
  166. # elif defined(__GNUC__) && !defined(__STRICT_ANSI__) /* gcc w/C89+extensions */
  167. # define _X_RESTRICT_KYWD __restrict__
  168. # else
  169. # define _X_RESTRICT_KYWD
  170. # endif
  171. #endif
  172. #endif /* _XFUNCPROTO_H_ */