Re: Passing va_args...

2006-03-09 Thread Jean-Yves Bitterlich
Dave Korn wrote: On 09 March 2006 13:11, Jean-Yves Bitterlich wrote: Jean, do you know you're replying to an email from October 2005? Ah well, I see the thread ended without all the information coming out, Andreas said it was impossible but didn't go into the details so

Re: Passing va_args...

2006-03-09 Thread Jean-Yves Bitterlich
> 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 fun

Re: Passing va_args...

2006-03-09 Thread Jean-Yves Bitterlich
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