home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 January / PCWorld_2000-01_cd.bin / Software / Servis / Devc / _SETUP.4 / Group3 / stdarg.h < prev    next >
C/C++ Source or Header  |  1998-03-08  |  6KB  |  206 lines

  1. /* stdarg.h for GNU.
  2.    Note that the type used in va_arg is supposed to match the
  3.    actual type **after default promotions**.
  4.    Thus, va_arg (..., short) is not valid.  */
  5.  
  6. #ifndef _STDARG_H
  7. #ifndef _ANSI_STDARG_H_
  8. #ifndef __need___va_list
  9. #define _STDARG_H
  10. #define _ANSI_STDARG_H_
  11. #endif /* not __need___va_list */
  12. #undef __need___va_list
  13.  
  14. #ifdef __clipper__
  15. #include "va-clipper.h"
  16. #else
  17. #ifdef __m88k__
  18. #include "va-m88k.h"
  19. #else
  20. #ifdef __i860__
  21. #include "va-i860.h"
  22. #else
  23. #ifdef __hppa__
  24. #include "va-pa.h"
  25. #else
  26. #ifdef __mips__
  27. #include "va-mips.h"
  28. #else
  29. #ifdef __sparc__
  30. #include "va-sparc.h"
  31. #else
  32. #ifdef __i960__
  33. #include "va-i960.h"
  34. #else
  35. #ifdef __alpha__
  36. #include "va-alpha.h"
  37. #else
  38. #if defined (__H8300__) || defined (__H8300H__) || defined (__H8300S__)
  39. #include "va-h8300.h"
  40. #else
  41. #if defined (__PPC__) && (defined (_CALL_SYSV) || defined (_WIN32))
  42. #include "va-ppc.h"
  43. #else
  44. #ifdef __arc__
  45. #include "va-arc.h"
  46. #else
  47. #ifdef __M32R__
  48. #include "va-m32r.h"
  49. #else
  50. #ifdef __sh__
  51. #include "va-sh.h"
  52. #else
  53. #ifdef __mn10300__
  54. #include "va-mn10300.h"
  55. #else
  56. #ifdef __mn10200__
  57. #include "va-mn10200.h"
  58. #else
  59. #ifdef __v850__
  60. #include "va-v850.h"
  61. #else
  62.  
  63. /* Define __gnuc_va_list.  */
  64.  
  65. #ifndef __GNUC_VA_LIST
  66. #define __GNUC_VA_LIST
  67. #if defined(__svr4__) || defined(_AIX) || defined(_M_UNIX) || defined(__NetBSD__)
  68. typedef char *__gnuc_va_list;
  69. #else
  70. typedef void *__gnuc_va_list;
  71. #endif
  72. #endif
  73.  
  74. /* Define the standard macros for the user,
  75.    if this invocation was from the user program.  */
  76. #ifdef _STDARG_H
  77.  
  78. /* Amount of space required in an argument list for an arg of type TYPE.
  79.    TYPE may alternatively be an expression whose type is used.  */
  80.  
  81. #if defined(sysV68)
  82. #define __va_rounded_size(TYPE)  \
  83.   (((sizeof (TYPE) + sizeof (short) - 1) / sizeof (short)) * sizeof (short))
  84. #else
  85. #define __va_rounded_size(TYPE)  \
  86.   (((sizeof (TYPE) + sizeof (int) - 1) / sizeof (int)) * sizeof (int))
  87. #endif
  88.  
  89. #define va_start(AP, LASTARG)                         \
  90.  (AP = ((__gnuc_va_list) __builtin_next_arg (LASTARG)))
  91.  
  92. #undef va_end
  93. void va_end (__gnuc_va_list);        /* Defined in libgcc.a */
  94. #define va_end(AP)    ((void)0)
  95.  
  96. /* We cast to void * and then to TYPE * because this avoids
  97.    a warning about increasing the alignment requirement.  */
  98.  
  99. #if (defined (__arm__) && ! defined (__ARMEB__)) || defined (__i386__) || defined (__i860__) || defined (__ns32000__) || defined (__vax__)
  100. /* This is for little-endian machines; small args are padded upward.  */
  101. #define va_arg(AP, TYPE)                        \
  102.  (AP = (__gnuc_va_list) ((char *) (AP) + __va_rounded_size (TYPE)),    \
  103.   *((TYPE *) (void *) ((char *) (AP) - __va_rounded_size (TYPE))))
  104. #else /* big-endian */
  105. /* This is for big-endian machines; small args are padded downward.  */
  106. #define va_arg(AP, TYPE)                        \
  107.  (AP = (__gnuc_va_list) ((char *) (AP) + __va_rounded_size (TYPE)),    \
  108.   *((TYPE *) (void *) ((char *) (AP)                    \
  109.                - ((sizeof (TYPE) < __va_rounded_size (char)    \
  110.                ? sizeof (TYPE) : __va_rounded_size (TYPE))))))
  111. #endif /* big-endian */
  112.  
  113. /* Copy __gnuc_va_list into another variable of this type.  */
  114. #define __va_copy(dest, src) (dest) = (src)
  115.  
  116. #endif /* _STDARG_H */
  117.  
  118. #endif /* not v850 */
  119. #endif /* not mn10200 */
  120. #endif /* not mn10300 */
  121. #endif /* not sh */
  122. #endif /* not m32r */
  123. #endif /* not arc */
  124. #endif /* not powerpc with V.4 calling sequence */
  125. #endif /* not h8300 */
  126. #endif /* not alpha */
  127. #endif /* not i960 */
  128. #endif /* not sparc */
  129. #endif /* not mips */
  130. #endif /* not hppa */
  131. #endif /* not i860 */
  132. #endif /* not m88k */
  133. #endif /* not clipper */
  134.  
  135. #ifdef _STDARG_H
  136. /* Define va_list, if desired, from __gnuc_va_list. */
  137. /* We deliberately do not define va_list when called from
  138.    stdio.h, because ANSI C says that stdio.h is not supposed to define
  139.    va_list.  stdio.h needs to have access to that data type, 
  140.    but must not use that name.  It should use the name __gnuc_va_list,
  141.    which is safe because it is reserved for the implementation.  */
  142.  
  143. #ifdef _HIDDEN_VA_LIST  /* On OSF1, this means varargs.h is "half-loaded".  */
  144. #undef _VA_LIST
  145. #endif
  146.  
  147. #ifdef _BSD_VA_LIST
  148. #undef _BSD_VA_LIST
  149. #endif
  150.  
  151. #if defined(__svr4__) || (defined(_SCO_DS) && !defined(__VA_LIST))
  152. /* SVR4.2 uses _VA_LIST for an internal alias for va_list,
  153.    so we must avoid testing it and setting it here.
  154.    SVR4 uses _VA_LIST as a flag in stdarg.h, but we should
  155.    have no conflict with that.  */
  156. #ifndef _VA_LIST_
  157. #define _VA_LIST_
  158. #ifdef __i860__
  159. #ifndef _VA_LIST
  160. #define _VA_LIST va_list
  161. #endif
  162. #endif /* __i860__ */
  163. typedef __gnuc_va_list va_list;
  164. #ifdef _SCO_DS
  165. #define __VA_LIST
  166. #endif
  167. #endif /* _VA_LIST_ */
  168. #else /* not __svr4__ || _SCO_DS */
  169.  
  170. /* The macro _VA_LIST_ is the same thing used by this file in Ultrix.
  171.    But on BSD NET2 we must not test or define or undef it.
  172.    (Note that the comments in NET 2's ansi.h
  173.    are incorrect for _VA_LIST_--see stdio.h!)  */
  174. #if !defined (_VA_LIST_) || defined (__BSD_NET2__) || defined (____386BSD____) || defined (__bsdi__) || defined (__sequent__) || defined (__FreeBSD__) || defined(WINNT)
  175. /* The macro _VA_LIST_DEFINED is used in Windows NT 3.5  */
  176. #ifndef _VA_LIST_DEFINED
  177. /* The macro _VA_LIST is used in SCO Unix 3.2.  */
  178. #ifndef _VA_LIST
  179. /* The macro _VA_LIST_T_H is used in the Bull dpx2  */
  180. #ifndef _VA_LIST_T_H
  181. typedef __gnuc_va_list va_list;
  182. #endif /* not _VA_LIST_T_H */
  183. #endif /* not _VA_LIST */
  184. #endif /* not _VA_LIST_DEFINED */
  185. #if !(defined (__BSD_NET2__) || defined (____386BSD____) || defined (__bsdi__) || defined (__sequent__) || defined (__FreeBSD__))
  186. #define _VA_LIST_
  187. #endif
  188. #ifndef _VA_LIST
  189. #define _VA_LIST
  190. #endif
  191. #ifndef _VA_LIST_DEFINED
  192. #define _VA_LIST_DEFINED
  193. #endif
  194. #ifndef _VA_LIST_T_H
  195. #define _VA_LIST_T_H
  196. #endif
  197.  
  198. #endif /* not _VA_LIST_, except on certain systems */
  199.  
  200. #endif /* not __svr4__ */
  201.  
  202. #endif /* _STDARG_H */
  203.  
  204. #endif /* not _ANSI_STDARG_H_ */
  205. #endif /* not _STDARG_H */
  206.