-Wstrict-prototypes

Jim Blandy (jimb@cyclic.com)
Tue, 17 Dec 1996 16:44:46 -0500

I believe the current Guile sources should correctly typecheck
function arguments, because the code should be following these
conventions:

- Every mumble.c file should #include mumble.h.
- All non-static functions in mumble.c should have prototypes in
mumble.h.
- All static functions in mumble.c should have a prototype-only
declaration before their definition.

If you know of a case where these conventions aren't followed, let me
know. If these conventions aren't sufficient, then I'm confused, and
would be happy to be set straight.