mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-28 22:26:05 +00:00

This failed on AArch64 due to the type mismatch using int instead of __builtin_va_list. llvm-svn: 250112
10 lines
296 B
C
10 lines
296 B
C
struct FILE;
|
|
extern int vfprintf(struct FILE *s, const char *format, __builtin_va_list arg);
|
|
extern int vprintf(const char *format, __builtin_va_list arg);
|
|
|
|
extern __inline __attribute__((gnu_inline,always_inline)) int
|
|
vprintf(const char *x, __builtin_va_list y)
|
|
{
|
|
return vfprintf (0, 0, y);
|
|
}
|