stdarg.h
上传用户:qddsws
上传日期:2022-06-22
资源大小:723k
文件大小:4k
源码类别:

操作系统开发

开发平台:

C/C++

  1. /* Copyright (C) 1989, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
  2. This file is part of GNU CC.
  3. GNU CC is free software; you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation; either version 2, or (at your option)
  6. any later version.
  7. GNU CC is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with GNU CC; see the file COPYING.  If not, write to
  13. the Free Software Foundation, 59 Temple Place - Suite 330,
  14. Boston, MA 02111-1307, USA.  */
  15. /* As a special exception, if you include this header file into source
  16.    files compiled by GCC, this header file does not by itself cause
  17.    the resulting executable to be covered by the GNU General Public
  18.    License.  This exception does not however invalidate any other
  19.    reasons why the executable file might be covered by the GNU General
  20.    Public License.  */
  21. /*
  22.  * ISO C Standard:  7.15  Variable arguments  <stdarg.h>
  23.  */
  24. #ifndef _STDARG_H
  25. #ifndef _ANSI_STDARG_H_
  26. #ifndef __need___va_list
  27. #define _STDARG_H
  28. #define _ANSI_STDARG_H_
  29. #endif /* not __need___va_list */
  30. #undef __need___va_list
  31. /* Define __gnuc_va_list.  */
  32. #ifndef __GNUC_VA_LIST
  33. #define __GNUC_VA_LIST
  34. typedef __builtin_va_list __gnuc_va_list;
  35. #endif
  36. /* Define the standard macros for the user,
  37.    if this invocation was from the user program.  */
  38. #ifdef _STDARG_H
  39. #define va_start(v,l) __builtin_va_start(v,l)
  40. #define va_end(v) __builtin_va_end(v)
  41. #define va_arg(v,l) __builtin_va_arg(v,l)
  42. #if !defined(__STRICT_ANSI__) || __STDC_VERSION__ + 0 >= 199900L
  43. #define va_copy(d,s) __builtin_va_copy(d,s)
  44. #endif
  45. #define __va_copy(d,s) __builtin_va_copy(d,s)
  46. /* Define va_list, if desired, from __gnuc_va_list. */
  47. /* We deliberately do not define va_list when called from
  48.    stdio.h, because ANSI C says that stdio.h is not supposed to define
  49.    va_list.  stdio.h needs to have access to that data type, 
  50.    but must not use that name.  It should use the name __gnuc_va_list,
  51.    which is safe because it is reserved for the implementation.  */
  52. #ifdef _HIDDEN_VA_LIST  /* On OSF1, this means varargs.h is "half-loaded".  */
  53. #undef _VA_LIST
  54. #endif
  55. #ifdef _BSD_VA_LIST
  56. #undef _BSD_VA_LIST
  57. #endif
  58. #if defined(__svr4__) || (defined(_SCO_DS) && !defined(__VA_LIST))
  59. /* SVR4.2 uses _VA_LIST for an internal alias for va_list,
  60.    so we must avoid testing it and setting it here.
  61.    SVR4 uses _VA_LIST as a flag in stdarg.h, but we should
  62.    have no conflict with that.  */
  63. #ifndef _VA_LIST_
  64. #define _VA_LIST_
  65. #ifdef __i860__
  66. #ifndef _VA_LIST
  67. #define _VA_LIST va_list
  68. #endif
  69. #endif /* __i860__ */
  70. typedef __gnuc_va_list va_list;
  71. #ifdef _SCO_DS
  72. #define __VA_LIST
  73. #endif
  74. #endif /* _VA_LIST_ */
  75. #else /* not __svr4__ || _SCO_DS */
  76. /* The macro _VA_LIST_ is the same thing used by this file in Ultrix.
  77.    But on BSD NET2 we must not test or define or undef it.
  78.    (Note that the comments in NET 2's ansi.h
  79.    are incorrect for _VA_LIST_--see stdio.h!)  */
  80. #if !defined (_VA_LIST_) || defined (__BSD_NET2__) || defined (____386BSD____) || defined (__bsdi__) || defined (__sequent__) || defined (__FreeBSD__) || defined(WINNT)
  81. /* The macro _VA_LIST_DEFINED is used in Windows NT 3.5  */
  82. #ifndef _VA_LIST_DEFINED
  83. /* The macro _VA_LIST is used in SCO Unix 3.2.  */
  84. #ifndef _VA_LIST
  85. /* The macro _VA_LIST_T_H is used in the Bull dpx2  */
  86. #ifndef _VA_LIST_T_H
  87. /* The macro __va_list__ is used by BeOS.  */
  88. #ifndef __va_list__
  89. typedef __gnuc_va_list va_list;
  90. #endif /* not __va_list__ */
  91. #endif /* not _VA_LIST_T_H */
  92. #endif /* not _VA_LIST */
  93. #endif /* not _VA_LIST_DEFINED */
  94. #if !(defined (__BSD_NET2__) || defined (____386BSD____) || defined (__bsdi__) || defined (__sequent__) || defined (__FreeBSD__))
  95. #define _VA_LIST_
  96. #endif
  97. #ifndef _VA_LIST
  98. #define _VA_LIST
  99. #endif
  100. #ifndef _VA_LIST_DEFINED
  101. #define _VA_LIST_DEFINED
  102. #endif
  103. #ifndef _VA_LIST_T_H
  104. #define _VA_LIST_T_H
  105. #endif
  106. #ifndef __va_list__
  107. #define __va_list__
  108. #endif
  109. #endif /* not _VA_LIST_, except on certain systems */
  110. #endif /* not __svr4__ */
  111. #endif /* _STDARG_H */
  112. #endif /* not _ANSI_STDARG_H_ */
  113. #endif /* not _STDARG_H */