summaryrefslogtreecommitdiff
path: root/src/user/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/user/lib')
-rw-r--r--src/user/lib/libc/include/stdarg.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/user/lib/libc/include/stdarg.h b/src/user/lib/libc/include/stdarg.h
index 5cd74ff..141b04a 100644
--- a/src/user/lib/libc/include/stdarg.h
+++ b/src/user/lib/libc/include/stdarg.h
@@ -1,10 +1,6 @@
#ifndef DEF_STDARG_H
#define DEF_STDARG_H
-#define va_start(v,l) __builtin_va_start(v,l)
-#define va_arg(v,l) __builtin_va_arg(v,l)
-#define va_end(v) __builtin_va_end(v)
-#define va_copy(d,s) __builtin_va_copy(d,s)
-typedef __builtin_va_list va_list;
+#include <types.h>
#endif