* iris6.h (BUILD_VA_LIST_TYPE): Define.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / vaarg1.C
blobd58104ce2ae364fd22d0a96bf5745be39111c867
1 // Build don't link:
2 // Origin: Mark Mitchell <mark@codesourcery.com>
4 #include <stdarg.h>
5 #include <stdio.h>
7 void f (int i, ...)
9   va_list ap;
11   va_start (ap, i);
12   vprintf ("test", ap);
13   va_end (ap);