@techee apparently yours breaks going to the declaration from the definition, even when there's only one match:
int func(void);
int func(void) {
return 0;
}
int main(void) {
return func();
}
—
Reply to this email directly or view it on GitHub.