declaration with unspecified parameters can follow declaration with specified parameters
[cparser] / parsetest / cp_error001.c
1 void bi_windup(void);
2
3 void bi_windup() {
4 }
5
6 int main(void)
7 {
8         return 0;
9 }