https://bugzilla.novell.com/show_bug.cgi?id=355254 User rguenther@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=355254#c16 --- Comment #16 from Richard Guenther <rguenther@novell.com> 2008-01-23 08:35:54 MST --- I have now something like int foo(); int bar(void) { return foo(0); } gcc-4.3 -S t.c -Wall t.c: In function 'bar': t.c:5: warning: call to function 'foo' without a real prototype t.c:1: note: 'foo' was declared here which will not warn if you call it as foo() instead. And it will also not warn for int foo(); int foo(int i) { return i; }; int bar(void) { return foo(0); } But it will warn for each call, not only if it encounters a real definition. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.