blob: 0285872860d5f4635ef678322f73efae1f21be36 [file] [log] [blame]
#include <stdarg.h>
f (int x, ...)
{
va_list args;
va_start (args, bogus_variable);
va_end (args);
}