Kalaky <[EMAIL PROTECTED]> writes:> I'am looking for some way to pass variable arguments to another > function that receives variable arguments without using va_list. This is impossible.
what about?
#define DOTS ...
function_1 (int z, ...);
function_2 (int z, ...);
{
return function_1 (z, DOTS);
}
Andreas.
--JYB
