ansidecl.h
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:7k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* ANSI and traditional C compatability macros
  2.    Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000
  3.    Free Software Foundation, Inc.
  4.    This file is part of the GNU C Library.
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software
  15. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  16. /* ANSI and traditional C compatibility macros
  17.    ANSI C is assumed if __STDC__ is #defined.
  18.    Macro ANSI C definition Traditional C definition
  19.    ----- ---- - ---------- ----------- - ----------
  20.    PTR `void *' `char *'
  21.    LONG_DOUBLE `long double' `double'
  22.    VOLATILE `volatile' `'
  23.    SIGNED `signed' `'
  24.    PTRCONST `void *const' `char *'
  25.    ANSI_PROTOTYPES  1 not defined
  26.    CONST is also defined, but is obsolete.  Just use const.
  27.    obsolete --     DEFUN (name, arglist, args)
  28. Defines function NAME.
  29. ARGLIST lists the arguments, separated by commas and enclosed in
  30. parentheses.  ARGLIST becomes the argument list in traditional C.
  31. ARGS list the arguments with their types.  It becomes a prototype in
  32. ANSI C, and the type declarations in traditional C.  Arguments should
  33. be separated with `AND'.  For functions with a variable number of
  34. arguments, the last thing listed should be `DOTS'.
  35.    obsolete --     DEFUN_VOID (name)
  36. Defines a function NAME, which takes no arguments.
  37.    obsolete --     EXFUN (name, (prototype)) -- obsolete.
  38. Replaced by PARAMS.  Do not use; will disappear someday soon.
  39. Was used in external function declarations.
  40. In ANSI C it is `NAME PROTOTYPE' (so PROTOTYPE should be enclosed in
  41. parentheses).  In traditional C it is `NAME()'.
  42. For a function that takes no arguments, PROTOTYPE should be `(void)'.
  43.    obsolete --     PROTO (type, name, (prototype)    -- obsolete.
  44. This one has also been replaced by PARAMS.  Do not use.
  45.    PARAMS ((args))
  46. We could use the EXFUN macro to handle prototype declarations, but
  47. the name is misleading and the result is ugly.  So we just define a
  48. simple macro to handle the parameter lists, as in:
  49.       static int foo PARAMS ((int, char));
  50. This produces:  `static int foo();' or `static int foo (int, char);'
  51. EXFUN would have done it like this:
  52.       static int EXFUN (foo, (int, char));
  53. but the function is not external...and it's hard to visually parse
  54. the function name out of the mess.   EXFUN should be considered
  55. obsolete; new code should be written to use PARAMS.
  56.    DOTS is also obsolete.
  57.    Examples:
  58. extern int printf PARAMS ((const char *format, ...));
  59. */
  60. #ifndef _ANSIDECL_H
  61. #define _ANSIDECL_H 1
  62. /* Every source file includes this file,
  63.    so they will all get the switch for lint.  */
  64. /* LINTLIBRARY */
  65. #if defined (__STDC__) || defined (_AIX) || (defined (__mips) && defined (_SYSTYPE_SVR4)) || defined(_WIN32)
  66. /* All known AIX compilers implement these things (but don't always
  67.    define __STDC__).  The RISC/OS MIPS compiler defines these things
  68.    in SVR4 mode, but does not define __STDC__.  */
  69. #define PTR void *
  70. #define PTRCONST void *CONST
  71. #define LONG_DOUBLE long double
  72. #ifndef IN_GCC
  73. #define AND ,
  74. #define NOARGS void
  75. #define VOLATILE volatile
  76. #define SIGNED signed
  77. #endif /* ! IN_GCC */
  78. #define PARAMS(paramlist) paramlist
  79. #define ANSI_PROTOTYPES 1
  80. #define VPARAMS(ARGS) ARGS
  81. #define VA_START(va_list,var) va_start(va_list,var)
  82. /* These are obsolete.  Do not use.  */
  83. #ifndef IN_GCC
  84. #define CONST const
  85. #define DOTS , ...
  86. #define PROTO(type, name, arglist) type name arglist
  87. #define EXFUN(name, proto) name proto
  88. #define DEFUN(name, arglist, args) name(args)
  89. #define DEFUN_VOID(name) name(void)
  90. #endif /* ! IN_GCC */
  91. #else /* Not ANSI C.  */
  92. #define PTR char *
  93. #define PTRCONST PTR
  94. #define LONG_DOUBLE double
  95. #ifndef IN_GCC
  96. #define AND ;
  97. #define NOARGS
  98. #define VOLATILE
  99. #define SIGNED
  100. #endif /* !IN_GCC */
  101. #ifndef const /* some systems define it in header files for non-ansi mode */
  102. #define const
  103. #endif
  104. #define PARAMS(paramlist) ()
  105. #define VPARAMS(ARGS) (va_alist) va_dcl
  106. #define VA_START(va_list,var) va_start(va_list)
  107. /* These are obsolete.  Do not use.  */
  108. #ifndef IN_GCC
  109. #define CONST
  110. #define DOTS
  111. #define PROTO(type, name, arglist) type name ()
  112. #define EXFUN(name, proto) name()
  113. #define DEFUN(name, arglist, args) name arglist args;
  114. #define DEFUN_VOID(name) name()
  115. #endif /* ! IN_GCC */
  116. #endif /* ANSI C.  */
  117. /* Using MACRO(x,y) in cpp #if conditionals does not work with some
  118.    older preprocessors.  Thus we can't define something like this:
  119. #define HAVE_GCC_VERSION(MAJOR, MINOR) 
  120.   (__GNUC__ > (MAJOR) || (__GNUC__ == (MAJOR) && __GNUC_MINOR__ >= (MINOR)))
  121. and then test "#if HAVE_GCC_VERSION(2,7)".
  122. So instead we use the macro below and test it against specific values.  */
  123. /* This macro simplifies testing whether we are using gcc, and if it
  124.    is of a particular minimum version. (Both major & minor numbers are
  125.    significant.)  This macro will evaluate to 0 if we are not using
  126.    gcc at all.  */
  127. #ifndef GCC_VERSION
  128. #define GCC_VERSION (__GNUC__ * 1000 + __GNUC_MINOR__)
  129. #endif /* GCC_VERSION */
  130. /* Define macros for some gcc attributes.  This permits us to use the
  131.    macros freely, and know that they will come into play for the
  132.    version of gcc in which they are supported.  */
  133. #if (GCC_VERSION < 2007)
  134. # define __attribute__(x)
  135. #endif
  136. /* Attribute __malloc__ on functions was valid as of gcc 2.96. */
  137. #ifndef ATTRIBUTE_MALLOC
  138. # if (GCC_VERSION >= 2096)
  139. #  define ATTRIBUTE_MALLOC __attribute__ ((__malloc__))
  140. # else
  141. #  define ATTRIBUTE_MALLOC
  142. # endif /* GNUC >= 2.96 */
  143. #endif /* ATTRIBUTE_MALLOC */
  144. /* Attributes on labels were valid as of gcc 2.93. */
  145. #ifndef ATTRIBUTE_UNUSED_LABEL
  146. # if (GCC_VERSION >= 2093)
  147. #  define ATTRIBUTE_UNUSED_LABEL ATTRIBUTE_UNUSED
  148. # else
  149. #  define ATTRIBUTE_UNUSED_LABEL
  150. # endif /* GNUC >= 2.93 */
  151. #endif /* ATTRIBUTE_UNUSED_LABEL */
  152. #ifndef ATTRIBUTE_UNUSED
  153. #define ATTRIBUTE_UNUSED __attribute__ ((__unused__))
  154. #endif /* ATTRIBUTE_UNUSED */
  155. #ifndef ATTRIBUTE_NORETURN
  156. #define ATTRIBUTE_NORETURN __attribute__ ((__noreturn__))
  157. #endif /* ATTRIBUTE_NORETURN */
  158. #ifndef ATTRIBUTE_PRINTF
  159. #define ATTRIBUTE_PRINTF(m, n) __attribute__ ((__format__ (__printf__, m, n)))
  160. #define ATTRIBUTE_PRINTF_1 ATTRIBUTE_PRINTF(1, 2)
  161. #define ATTRIBUTE_PRINTF_2 ATTRIBUTE_PRINTF(2, 3)
  162. #define ATTRIBUTE_PRINTF_3 ATTRIBUTE_PRINTF(3, 4)
  163. #define ATTRIBUTE_PRINTF_4 ATTRIBUTE_PRINTF(4, 5)
  164. #define ATTRIBUTE_PRINTF_5 ATTRIBUTE_PRINTF(5, 6)
  165. #endif /* ATTRIBUTE_PRINTF */
  166. /* We use __extension__ in some places to suppress -pedantic warnings
  167.    about GCC extensions.  This feature didn't work properly before
  168.    gcc 2.8.  */
  169. #if GCC_VERSION < 2008
  170. #define __extension__
  171. #endif
  172. #endif /* ansidecl.h */