Hacker News new | ask | show | jobs
by chappar 2596 days ago
Can't you do that already with f(...)?
2 comments

As other comments have noted:

varargs functions require at least one non-vararg parameter.

(As int_19h said:) On some architectures, vararg functions have their own distinct ABI, so (...) as a declaration is not compatible with any definition that doesn't also use (...).

Not in C! All variadic arguments functions must have at least one non-variadic variable.