blob: b82d4e5c4c37774c292402dc220a74c695b2e9ed [file] [log] [blame]
/* { dg-additional-options "-std=gnu89" } */
foo (a, b, c)
double a;
int b;
double c;
{
if (b)
return a + c;
else
return a - c;
}