72 lines
2.1 KiB
C
72 lines
2.1 KiB
C
/* stdarg.h for GNU.
|
|
Note that the type used in va_arg is supposed to match the
|
|
actual type **after default promotions**.
|
|
Thus, va_arg (..., short) is not valid. */
|
|
|
|
#ifndef _STDARG_H
|
|
#ifndef _ANSI_STDARG_H_
|
|
#ifndef __need___va_list
|
|
#define _STDARG_H
|
|
#define _ANSI_STDARG_H_
|
|
#endif /* not __need___va_list */
|
|
#undef __need___va_list
|
|
|
|
#include <machine/va-mips.h>
|
|
|
|
#ifdef _STDARG_H
|
|
/* Define va_list, if desired, from __gnuc_va_list. */
|
|
/* We deliberately do not define va_list when called from
|
|
stdio.h, because ANSI C says that stdio.h is not supposed to define
|
|
va_list. stdio.h needs to have access to that data type,
|
|
but must not use that name. It should use the name __gnuc_va_list,
|
|
which is safe because it is reserved for the implementation. */
|
|
|
|
#ifdef _HIDDEN_VA_LIST /* On OSF1, this means varargs.h is "half-loaded". */
|
|
#undef _VA_LIST
|
|
#endif
|
|
|
|
#ifdef _BSD_VA_LIST
|
|
#undef _BSD_VA_LIST
|
|
#endif
|
|
|
|
#ifdef __svr4__
|
|
|
|
#else /* not __svr4__ */
|
|
|
|
/* The macro _VA_LIST_ is the same thing used by this file in Ultrix.
|
|
But on BSD NET2 we must not test or define or undef it.
|
|
(Note that the comments in NET 2's ansi.h
|
|
are incorrect for _VA_LIST_--see stdio.h!) */
|
|
#if !defined (_VA_LIST_) || defined (__BSD_NET2__) || defined (____386BSD____) || defined (__bsdi__) || defined (__sequent__) || defined (__FreeBSD__) || defined(WINNT)
|
|
/* The macro _VA_LIST_DEFINED is used in Windows NT 3.5 */
|
|
#ifndef _VA_LIST_DEFINED
|
|
/* The macro _VA_LIST is used in SCO Unix 3.2. */
|
|
#ifndef _VA_LIST
|
|
/* The macro _VA_LIST_T_H is used in the Bull dpx2 */
|
|
#ifndef _VA_LIST_T_H
|
|
typedef __gnuc_va_list va_list;
|
|
#endif /* not _VA_LIST_T_H */
|
|
#endif /* not _VA_LIST */
|
|
#endif /* not _VA_LIST_DEFINED */
|
|
#if !(defined (__BSD_NET2__) || defined (____386BSD____) || defined (__bsdi__) || defined (__sequent__) || defined (__FreeBSD__))
|
|
#define _VA_LIST_
|
|
#endif
|
|
#ifndef _VA_LIST
|
|
#define _VA_LIST
|
|
#endif
|
|
#ifndef _VA_LIST_DEFINED
|
|
#define _VA_LIST_DEFINED
|
|
#endif
|
|
#ifndef _VA_LIST_T_H
|
|
#define _VA_LIST_T_H
|
|
#endif
|
|
|
|
#endif /* not _VA_LIST_, except on certain systems */
|
|
|
|
#endif /* not __svr4__ */
|
|
|
|
#endif /* _STDARG_H */
|
|
|
|
#endif /* not _ANSI_STDARG_H_ */
|
|
#endif /* not _STDARG_H */
|