]> andersk Git - splint.git/blob - test/tests2.4/enumtest.c
Fixes for win32
[splint.git] / test / tests2.4 / enumtest.c
1 void (**sig_func)(void);
2 void (**(sig_func1))(void);
3
4 void s_f (int x) {
5   if (x > 3) {
6     (**sig_func)();
7   } else {
8     (****sig_func1)(); /* No error - C apparently allows this... */
9   }
10 }
This page took 0.03682 seconds and 5 git commands to generate.