1*1f5207b7SJohn Levon extern int foo(int a, void *b);
2*1f5207b7SJohn Levon 
foo(a,b)3*1f5207b7SJohn Levon int foo(a, b)
4*1f5207b7SJohn Levon 	int a;
5*1f5207b7SJohn Levon 	void *b;
6*1f5207b7SJohn Levon {
7*1f5207b7SJohn Levon 	if (b)
8*1f5207b7SJohn Levon 		return a;
9*1f5207b7SJohn Levon }
10*1f5207b7SJohn Levon 
11*1f5207b7SJohn Levon /*
12*1f5207b7SJohn Levon  * check-name: old-stype-definition disabled
13*1f5207b7SJohn Levon  * check-command: sparse -Wno-old-style-definition $file
14*1f5207b7SJohn Levon  */
15