xref: /illumos-gate/usr/src/tools/smatch/src/validation/old-style-definition0.c (revision 1f5207b7604fb44407eb4342aff613f7c4508508)
1 extern int foo(int a, void *b);
2 
foo(a,b)3 int foo(a, b)
4 	int a;
5 	void *b;
6 {
7 	if (b)
8 		return a;
9 }
10 
11 /*
12  * check-name: old-stype-definition disabled
13  * check-command: sparse -Wno-old-style-definition $file
14  */
15