Bruno Haible <[EMAIL PROTECTED]> writes: > + /* Determine the total size. */ > + totalsize = 0; > + va_copy (ap, args);
There's a portability issue here, as va_copy is not in C89 (it's a C99-ism).
Bruno Haible <[EMAIL PROTECTED]> writes: > + /* Determine the total size. */ > + totalsize = 0; > + va_copy (ap, args);
There's a portability issue here, as va_copy is not in C89 (it's a C99-ism).