summaryrefslogtreecommitdiff
path: root/arch/or1k/bits/stdarg.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/or1k/bits/stdarg.h')
-rw-r--r--arch/or1k/bits/stdarg.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/or1k/bits/stdarg.h b/arch/or1k/bits/stdarg.h
new file mode 100644
index 00000000..fde37814
--- /dev/null
+++ b/arch/or1k/bits/stdarg.h
@@ -0,0 +1,4 @@
+#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)