*** empty log message ***
authorRichard Stallman <rms@gnu.org>
Sat, 4 Jan 1992 08:25:49 +0000 (08:25 +0000)
committerRichard Stallman <rms@gnu.org>
Sat, 4 Jan 1992 08:25:49 +0000 (08:25 +0000)
From-SVN: r161

gcc/ginclude/stdarg.h

index 0ea8d9287b08bc06b4abe0236b8149e0bc5a867a..00e714a5086fb0f05a3039538464c5c928df88cd 100644 (file)
 
 /* 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
 typedef char *va_list;
+#endif /* _VA_LIST */
 #endif /* _VA_LIST_ */
 
 /* Amount of space required in an argument list for an arg of type TYPE.
@@ -34,7 +38,7 @@ typedef char *va_list;
   AP = ((char *) __builtin_next_arg ()))
 #endif
 
-void va_end (va_list);         /* Defined in gnulib */
+void va_end (va_list);         /* Defined in libgcc.a */
 #define va_end(AP)
 
 #define va_arg(AP, TYPE)                                               \