From 1e12632591ab98a6ea3af8680716c28282552981 Mon Sep 17 00:00:00 2001 From: "Nicholas J. Kain" Date: Tue, 15 Feb 2011 07:32:09 -0500 Subject: Port musl to x86-64. One giant commit! --- arch/x86_64/bits/stdarg.h | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 arch/x86_64/bits/stdarg.h (limited to 'arch/x86_64/bits/stdarg.h') diff --git a/arch/x86_64/bits/stdarg.h b/arch/x86_64/bits/stdarg.h new file mode 100644 index 00000000..24b679c9 --- /dev/null +++ b/arch/x86_64/bits/stdarg.h @@ -0,0 +1,5 @@ +#define va_start(v,l) __builtin_va_start(v,l) +#define va_end(v) __builtin_va_end(v) +#define va_arg(v,l) __builtin_va_arg(v,l) +#define va_copy(d,s) __builtin_va_copy(d,s) +#define __va_copy(d,s) __builtin_va_copy(d,s) -- cgit v1.2.1