C1801: Implicit parameter-declaration for '<FuncName>'

[DISABLE, INFORMATION, WARNING , ERROR]

Description

A function was called without its prototype being declared before.

Example
  void f(void) {

  
    g();

  
  }

  
Tips

Prototype the function before calling it. Make sure that there is a prototype/declaration for the function. E.g. for above example:

  void g(void); // having correct prototype for 'g'

  
  void f(void) {

  
    g();

  
  }