xref: /illumos-gate/usr/src/tools/smatch/src/validation/backend/function-ptr.c (revision edd4c52697927997fb1ce3c2c4c425e5ca3a56d6)
1 typedef int (*fn_t)(int x, int y);
2 
3 static int run(fn_t fn, int x, int y)
4 {
5 	return fn(x, y);
6 }
7 
8 /*
9  * check-name: Function pointer code generation
10  * check-command: sparsec -c $file -o tmp.o
11  */
12