xref: /illumos-gate/usr/src/tools/smatch/src/validation/Wexternal-function-has-definition.c (revision 4c87aefe8930bd07275b8dd2e96ea5f24d93a52e)
1 
2 extern int myfunction(void);
3 
4 extern int myfunction(void) { return 0; }
5 
6 /*
7  * check-name: external-function-has-definition
8  * check-command: sparse -Wno-external-function-has-definition $file
9  *
10  * check-error-start
11  * check-error-end
12  */
13