Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 663 Bytes

compiler-warning-level-4-c4202.md

File metadata and controls

27 lines (22 loc) · 663 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 4) C4202
Compiler Warning (level 4) C4202
11/04/2016
C4202
C4202
253293aa-97a3-4878-a2e8-c6cc9e20b1cb

Compiler Warning (level 4) C4202

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()
{
}