You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* SVR4.2 uses _VA_LIST for an internal alias for va_list,
75
+
so we must avoid testing it and setting it here.
76
+
SVR4 uses _VA_LIST as a flag in stdarg.h, but we should
77
+
have no conflict with that. */
78
+
#ifndef_VA_LIST_
79
+
#define_VA_LIST_
80
+
#ifdef__i860__
81
+
#ifndef_VA_LIST
82
+
#define_VA_LIST va_list
83
+
#endif
84
+
#endif/* __i860__ */
85
+
typedef__gnuc_va_listva_list;
86
+
#ifdef_SCO_DS
87
+
#define__VA_LIST
88
+
#endif
89
+
#endif/* _VA_LIST_ */
90
+
#else/* not __svr4__ || _SCO_DS */
91
+
92
+
/* The macro _VA_LIST_ is the same thing used by this file in Ultrix.
93
+
But on BSD NET2 we must not test or define or undef it.
94
+
(Note that the comments in NET 2's ansi.h
95
+
are incorrect for _VA_LIST_--see stdio.h!) */
96
+
#if !defined (_VA_LIST_) || defined (__BSD_NET2__) || defined (____386BSD____) || defined (__bsdi__) || defined (__sequent__) || defined (__FreeBSD__) || defined(WINNT)
97
+
/* The macro _VA_LIST_DEFINED is used in Windows NT 3.5 */
98
+
#ifndef_VA_LIST_DEFINED
99
+
/* The macro _VA_LIST is used in SCO Unix 3.2. */
100
+
#ifndef_VA_LIST
101
+
/* The macro _VA_LIST_T_H is used in the Bull dpx2 */
102
+
#ifndef_VA_LIST_T_H
103
+
/* The macro __va_list__ is used by BeOS. */
104
+
#ifndef__va_list__
105
+
typedef__gnuc_va_listva_list;
106
+
#endif/* not __va_list__ */
107
+
#endif/* not _VA_LIST_T_H */
108
+
#endif/* not _VA_LIST */
109
+
#endif/* not _VA_LIST_DEFINED */
110
+
#if !(defined (__BSD_NET2__) || defined (____386BSD____) || defined (__bsdi__) || defined (__sequent__) || defined (__FreeBSD__))
111
+
#define_VA_LIST_
112
+
#endif
113
+
#ifndef_VA_LIST
114
+
#define_VA_LIST
115
+
#endif
116
+
#ifndef_VA_LIST_DEFINED
117
+
#define_VA_LIST_DEFINED
118
+
#endif
119
+
#ifndef_VA_LIST_T_H
120
+
#define_VA_LIST_T_H
121
+
#endif
122
+
#ifndef__va_list__
123
+
#define__va_list__
124
+
#endif
125
+
126
+
#endif/* not _VA_LIST_, except on certain systems */
0 commit comments