blob: a22f555416d26c9dc09a09f976aa3a3cbc0403ce [file] [log] [blame]
/* Test old-style function definitions not in C2x: () does not give
type with a prototype for older standards. */
/* { dg-do compile } */
/* { dg-options "-std=c11" } */
void
f ()
{
}
void
g (void)
{
f (1);
}