summaryrefslogtreecommitdiffstats
path: root/Tests/CompileFeatures/c_function_prototypes.c
blob: ab3c948874d183a5e5036e02825342cf24e28f37 (plain)
1
2
3
4
5
6
7
8
9

int someFunc(int a, int b);

int someFunc(int a, int b)
{
  (void)a;
  (void)b;
  return 0;
}