C1140: This function is already declared and has a different prototype

[DISABLE, INFORMATION, WARNING , ERROR]

Description

There are several different prototypes for the same function in a C module.

Example
  int Foo (char,float,int,int* );

  
  int Foo (char,float,int,int**);

  
  int Foo (char,char,int,int**);

  
Tips

Check which one is correct and remove the other(s).