[WARNING]
A function was called without its prototype being totally declared before.
void foo(); // not complete prototype, arguments not known
void main(void) {
foo();
}
Prototype all arguments of the function before calling it.