Edit

Share via


Compiler Warning (level 4) C4212

nonstandard extension used : function declaration used ellipsis

Remarks

The function prototype has a variable number of arguments. The function definition does not.

Example

The following example generates C4212:

// C4212.c
// compile with: /W4 /Ze /c
void f(int , ...);
void f(int i, int j) {}