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
void func( a, b, ...) int a, b; // warning {}