标签: c++ c visual-studio-2010
可能重复: Is it possible to compile pre-ANSI (K&R-style) C code with Visual C++?
我们正在研究遗留代码,它具有以K& R风格定义的功能,
void fun(a,b,c) int a; int b; int c; { // ... }
我知道这不是ANSI标准,但有效的C代码,是否有任何方法可以使用Visual Studio(我们正在使用的VS 2010)编译此代码。