rt_gccstream/gcc/testsuite/g++.old-deja/g++.other/vaarg1.C

15 lines
211 B
C

// { dg-do assemble }
// Origin: Mark Mitchell <mark@codesourcery.com>
#include <stdarg.h>
#include <stdio.h>
void f (int i, ...)
{
va_list ap;
va_start (ap, i);
vprintf ("test", ap);
va_end (ap);
}