aboutsummaryrefslogtreecommitdiffstats
path: root/test/CFrontend/2003-08-20-PrototypeMismatch.c
blob: b2535c7a530825470aae4537917be57a8ceb96a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13


static int foo(int);

static int foo(C)
char C;
{
  return C;
}

void test() {
  foo(7);
}