mirror of
git://sourceware.org/git/glibc.git
synced 2025-04-06 14:10:30 +08:00
Skip undefined va_arg_pack
This commit is contained in:
parent
5a8bc50ed9
commit
1f3a3e1742
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user