More details: > The -Wstrict-prototypes warning is 90% a useful warning (think of declarations > of function pointers types) and 10% a stylistic warning - regarding () vs. > (void) > in function *definitions*.
The useful part warning is emitted in gcc-4.4.2/gcc/c-decl.c:5035. The stylistic warning is emitted in gcc-4.4.2/gcc/c-decl.c:6238. Brubno