va_copy in gnulib?

2006-05-07 Thread Ben Pfaff
Has anyone considered an emulation for missing va_copy() in gnulib? I notice that version-etc.c does this inline. It seems that it could be done pretty easily, either by wrapping or just creating a va_copy.h that's basically this: #include #ifndef va_copy #ifdef __va_copy #define va_cop

Re: va_copy in gnulib?

2006-05-07 Thread Paul Eggert
Ben Pfaff <[EMAIL PROTECTED]> writes: > Has anyone considered an emulation for missing va_copy() in > gnulib? I notice that version-etc.c does this inline. Bruno Haible proposed it here: http://lists.gnu.org/archive/html/bug-gnulib/2006-05/msg2.html Looks like a good idea but I haven't had