.libiberty.h
上传用户:aoeyumen
上传日期:2007-01-06
资源大小:3329k
文件大小:4k
源码类别:

DVD

开发平台:

Unix_Linux

  1. /* ANSI and traditional C compatability macros
  2.    Copyright 1991, 1992 Free Software Foundation, Inc.
  3.    This file is part of the GNU C Library.
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program 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
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  15. /* ANSI and traditional C compatibility macros
  16.    ANSI C is assumed if __STDC__ is #defined.
  17.    Macro ANSI C definition Traditional C definition
  18.    ----- ---- - ---------- ----------- - ----------
  19.    PTR `void *' `char *'
  20.    LONG_DOUBLE `long double' `double'
  21.    VOLATILE `volatile' `'
  22.    SIGNED `signed' `'
  23.    PTRCONST `void *const' `char *'
  24.    ANSI_PROTOTYPES  1 not defined
  25.    CONST is also defined, but is obsolete.  Just use const.
  26.    DEFUN (name, arglist, args)
  27. Defines function NAME.
  28. ARGLIST lists the arguments, separated by commas and enclosed in
  29. parentheses.  ARGLIST becomes the argument list in traditional C.
  30. ARGS list the arguments with their types.  It becomes a prototype in
  31. ANSI C, and the type declarations in traditional C.  Arguments should
  32. be separated with `AND'.  For functions with a variable number of
  33. arguments, the last thing listed should be `DOTS'.
  34.    DEFUN_VOID (name)
  35. Defines a function NAME, which takes no arguments.
  36.    obsolete --     EXFUN (name, (prototype)) -- obsolete.
  37. Replaced by PARAMS.  Do not use; will disappear someday soon.
  38. Was used in external function declarations.
  39. In ANSI C it is `NAME PROTOTYPE' (so PROTOTYPE should be enclosed in
  40. parentheses).  In traditional C it is `NAME()'.
  41. For a function that takes no arguments, PROTOTYPE should be `(void)'.
  42.     PARAMS ((args))
  43. We could use the EXFUN macro to handle prototype declarations, but
  44. the name is misleading and the result is ugly.  So we just define a
  45. simple macro to handle the parameter lists, as in:
  46.       static int foo PARAMS ((int, char));
  47. This produces:  `static int foo();' or `static int foo (int, char);'
  48. EXFUN would have done it like this:
  49.       static int EXFUN (foo, (int, char));
  50. but the function is not external...and it's hard to visually parse
  51. the function name out of the mess.   EXFUN should be considered
  52. obsolete; new code should be written to use PARAMS.
  53.     For example:
  54. extern int printf PARAMS ((CONST char *format DOTS));
  55. int DEFUN(fprintf, (stream, format),
  56.   FILE *stream AND CONST char *format DOTS) { ... }
  57. void DEFUN_VOID(abort) { ... }
  58. */
  59. #ifndef _ANSIDECL_H
  60. #define _ANSIDECL_H 1
  61. /* Every source file includes this file,
  62.    so they will all get the switch for lint.  */
  63. /* LINTLIBRARY */
  64. #if defined (__STDC__) || defined (_AIX) || (defined (__mips) && defined (_SYSTYPE_SVR4))
  65. /* All known AIX compilers implement these things (but don't always
  66.    define __STDC__).  The RISC/OS MIPS compiler defines these things
  67.    in SVR4 mode, but does not define __STDC__.  */
  68. #define PTR void *
  69. #define PTRCONST void *CONST
  70. #define LONG_DOUBLE long double
  71. #define AND ,
  72. #define NOARGS void
  73. #define CONST const
  74. #define VOLATILE volatile
  75. #define SIGNED signed
  76. #define DOTS , ...
  77. #define EXFUN(name, proto) name proto
  78. #define DEFUN(name, arglist, args) name(args)
  79. #define DEFUN_VOID(name) name(void)
  80. #define PROTO(type, name, arglist) type name arglist
  81. #define PARAMS(paramlist) paramlist
  82. #define ANSI_PROTOTYPES 1
  83. #else /* Not ANSI C.  */
  84. #define PTR char *
  85. #define PTRCONST PTR
  86. #define LONG_DOUBLE double
  87. #define AND ;
  88. #define NOARGS
  89. #define CONST
  90. #ifndef const /* some systems define it in header files for non-ansi mode */
  91. #define const
  92. #endif
  93. #define VOLATILE
  94. #define SIGNED
  95. #define DOTS
  96. #define EXFUN(name, proto) name()
  97. #define DEFUN(name, arglist, args) name arglist args;
  98. #define DEFUN_VOID(name) name()
  99. #define PROTO(type, name, arglist) type name ()
  100. #define PARAMS(paramlist) ()
  101. #endif /* ANSI C.  */
  102. #endif /* ansidecl.h */