ansidecl.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.ansidecl.h 1.5 05/17/01 18:14:23 cort
  3.  */
  4. /* ANSI and traditional C compatability macros
  5.    Copyright 1991, 1992 Free Software Foundation, Inc.
  6.    This file is part of the GNU C Library.
  7. This program is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2 of the License, or
  10. (at your option) any later version.
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15. You should have received a copy of the GNU General Public License
  16. along with this program; if not, write to the Free Software
  17. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  18. /* ANSI and traditional C compatibility macros
  19.    ANSI C is assumed if __STDC__ is #defined.
  20.    Macro ANSI C definition Traditional C definition
  21.    ----- ---- - ---------- ----------- - ----------
  22.    PTR `void *' `char *'
  23.    LONG_DOUBLE `long double' `double'
  24.    VOLATILE `volatile' `'
  25.    SIGNED `signed' `'
  26.    PTRCONST `void *const' `char *'
  27.    ANSI_PROTOTYPES  1 not defined
  28.    CONST is also defined, but is obsolete.  Just use const.
  29.    DEFUN (name, arglist, args)
  30. Defines function NAME.
  31. ARGLIST lists the arguments, separated by commas and enclosed in
  32. parentheses.  ARGLIST becomes the argument list in traditional C.
  33. ARGS list the arguments with their types.  It becomes a prototype in
  34. ANSI C, and the type declarations in traditional C.  Arguments should
  35. be separated with `AND'.  For functions with a variable number of
  36. arguments, the last thing listed should be `DOTS'.
  37.    DEFUN_VOID (name)
  38. Defines a function NAME, which takes no arguments.
  39.    obsolete --     EXFUN (name, (prototype)) -- obsolete.
  40. Replaced by PARAMS.  Do not use; will disappear someday soon.
  41. Was used in external function declarations.
  42. In ANSI C it is `NAME PROTOTYPE' (so PROTOTYPE should be enclosed in
  43. parentheses).  In traditional C it is `NAME()'.
  44. For a function that takes no arguments, PROTOTYPE should be `(void)'.
  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.     For example:
  57. extern int printf PARAMS ((CONST char *format DOTS));
  58. int DEFUN(fprintf, (stream, format),
  59.   FILE *stream AND CONST char *format DOTS) { ... }
  60. void DEFUN_VOID(abort) { ... }
  61. */
  62. #ifndef _ANSIDECL_H
  63. #define _ANSIDECL_H 1
  64. /* Every source file includes this file,
  65.    so they will all get the switch for lint.  */
  66. /* LINTLIBRARY */
  67. #if defined (__STDC__) || defined (_AIX) || (defined (__mips) && defined (_SYSTYPE_SVR4)) || defined(WIN32)
  68. /* All known AIX compilers implement these things (but don't always
  69.    define __STDC__).  The RISC/OS MIPS compiler defines these things
  70.    in SVR4 mode, but does not define __STDC__.  */
  71. #define PTR void *
  72. #define PTRCONST void *CONST
  73. #define LONG_DOUBLE long double
  74. #define AND ,
  75. #define NOARGS void
  76. #define CONST const
  77. #define VOLATILE volatile
  78. #define SIGNED signed
  79. #define DOTS , ...
  80. #define EXFUN(name, proto) name proto
  81. #define DEFUN(name, arglist, args) name(args)
  82. #define DEFUN_VOID(name) name(void)
  83. #define PROTO(type, name, arglist) type name arglist
  84. #define PARAMS(paramlist) paramlist
  85. #define ANSI_PROTOTYPES 1
  86. #else /* Not ANSI C.  */
  87. #define PTR char *
  88. #define PTRCONST PTR
  89. #define LONG_DOUBLE double
  90. #define AND ;
  91. #define NOARGS
  92. #define CONST
  93. #ifndef const /* some systems define it in header files for non-ansi mode */
  94. #define const
  95. #endif
  96. #define VOLATILE
  97. #define SIGNED
  98. #define DOTS
  99. #define EXFUN(name, proto) name()
  100. #define DEFUN(name, arglist, args) name arglist args;
  101. #define DEFUN_VOID(name) name()
  102. #define PROTO(type, name, arglist) type name ()
  103. #define PARAMS(paramlist) ()
  104. #endif /* ANSI C.  */
  105. #endif /* ansidecl.h */