> > Can't you instruct gcc to issue a warning when calling a function without > > prototype? > > Option -Wall IMHO -Wmissing-prototypes is also needed. That way you get warning also if the function is defined without a prototype (ie function source doesn't include it's prototype header). I've catched a few additional bugs that way. - Eero