mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-25 06:18:56 -04: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);
|
|
}
|