*** empty log message ***
authorRichard Stallman <rms@gnu.org>
Mon, 13 Jan 1992 20:08:55 +0000 (20:08 +0000)
committerRichard Stallman <rms@gnu.org>
Mon, 13 Jan 1992 20:08:55 +0000 (20:08 +0000)
From-SVN: r180

gcc/ginclude/varargs.h

index a33aac1be60d9b209915f27545c7649ba92a24eb..30849b5788548c1124d881d390fe25ce61202d3f 100644 (file)
 /* The ... causes current_function_varargs to be set in cc1.  */
 #define va_dcl    int __builtin_va_alist; __va_ellipsis
 
+/* The macro _VA_LIST_ is the same thing used by this file in Ultrix.  */
+#ifndef _VA_LIST_
+/* The macro _VA_LIST is used in SCO Unix 3.2.  */
+#ifndef _VA_LIST
+#define _VA_LIST_
+#define _VA_LIST
 /* Make this a macro rather than a typedef, so we can undef any other defn.  */
 #define va_list __va___list
 typedef char * __va___list;
+#endif /* _VA_LIST */
+#endif /* _VA_LIST_ */
 
 #define va_start(AP)  AP=(char *) &__builtin_va_alist