C1858: Partial implicit parameter-declaration

[WARNING]

Description

A function was called without its prototype being totally declared before.

Example
  void foo(); // not complete prototype, arguments not 
  known

  
  void main(void) {

  
    foo();

  
  }

  
Tips

Prototype all arguments of the function before calling it.