C1103: Second C linkage of overloaded function not allowed

[ERROR]

Description

More than one overloaded function was declared with C linkage.

Example
  extern "C" void f(int);

  
  extern "C" void f(long);

  
Tips

When using C linkage, only one form of a given function can be made external.