blob: b2535c7a530825470aae4537917be57a8ceb96a5 [file] [log] [blame]
static int foo(int);
static int foo(C)
char C;
{
return C;
}
void test() {
foo(7);
}