Skip undefined va_arg_pack

This commit is contained in:
Stan Shebs 2018-01-19 09:31:04 -08:00
parent 5a8bc50ed9
commit 1f3a3e1742

View File

@ -710,7 +710,11 @@ _dl_dprintf (int fd, const char *fmt, ...)
{
/* Use local declaration to avoid includign <stdio.h>. */
extern int __dprintf(int fd, const char *format, ...) attribute_hidden;
#if defined(__clang__)
__dprintf (fd, fmt);
#else
__dprintf (fd, fmt, __builtin_va_arg_pack ());
#endif
}
#endif