On Tue, Mar 18, 2008 at 5:59 PM, Peter A. Felvegi <[EMAIL PROTECTED]> wrote: > hello,
> void vp(const char* fmt, va_list args)
> {
> vprintf(fmt, args);
> vprintf(fmt, args);
> }
You need va_copy there. Yes that is C99 only but it is required still.
-- Pinski
