summaryrefslogtreecommitdiff
path: root/mips/include/ape/stdarg.h
diff options
context:
space:
mode:
Diffstat (limited to 'mips/include/ape/stdarg.h')
-rw-r--r--mips/include/ape/stdarg.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/mips/include/ape/stdarg.h b/mips/include/ape/stdarg.h
new file mode 100644
index 000000000..b7e2282e6
--- /dev/null
+++ b/mips/include/ape/stdarg.h
@@ -0,0 +1,11 @@
+#ifndef __STDARG
+#define __STDARG
+
+typedef char *va_list;
+
+#define va_start(list, start) list = (char *)(&(start)+1)
+#define va_end(list)
+#define va_arg(list, mode) (sizeof(mode)==1 ? ((mode *) (list += 4))[-4] : \
+sizeof(mode)==2 ? ((mode *) (list += 4))[-2] : ((mode *) (list += sizeof(mode)))[-1])
+
+#endif /* __STDARG */