C1020: Incompatible type to previous declaration

[WARNING]

Description

The specified identifier was already declared with different type modifiers. If the option -Ansi is enabled, this warning becomes an error.

Example
  int i;

  
  int i();

  
Tips

Use the same type modifiers for the first declaration and the redeclaration.