Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
nonstandard extension used : '...': prototype parameter in name list illegal
An old-style function definition contains variable arguments. These definitions generate an error under ANSI compatibility (/Za).
Example
// C4202.c
// compile with: /W4
void func( a, b, ...) // C4202
int a, b;
{}
int main()
{
}