is there a way to pass the ... args from one variadic function to another variadic function? consider such case: void vf1(int a, ...) { vf2(...); } void vf2(...) { } can vf2 take _arguments and _argptr from vf1?