编译器警告(等级 4)C4210

使用了非标准扩展:函数给定文件范围

使用默认 Microsoft 扩展 (/Ze),函数声明具有文件范围。

// C4210.c
// compile with: /W4 /c
void func1()
{
   extern int func2( double );   // C4210 expected
}

int main()
{
   func2( 4 );   //  /Ze passes 4 as type double
}                //  /Za passes 4 as type int

此扩展可以防止代码移植到其他编译器。