C1411: Function-definition incompatible to previous declaration

[ERROR]

Description

An old-style function parameter declaration was not compatible to a previous declaration.

Example
  void f(int i);

  
  void f(i,j) int i; int j; {} // error

  
Tips

Declare the same parameters as in the previous declaration.