summaryrefslogtreecommitdiff
path: root/05/tcc-0.9.25/stdarg.h
diff options
context:
space:
mode:
Diffstat (limited to '05/tcc-0.9.25/stdarg.h')
-rw-r--r--05/tcc-0.9.25/stdarg.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/05/tcc-0.9.25/stdarg.h b/05/tcc-0.9.25/stdarg.h
deleted file mode 100644
index 4df996f..0000000
--- a/05/tcc-0.9.25/stdarg.h
+++ /dev/null
@@ -1,10 +0,0 @@
-#ifndef _STDARG_H
-#define _STDARG_H
-
-typedef unsigned long va_list;
-
-#define va_start(list, arg) ((list) = (unsigned long)&arg)
-#define va_arg(list, type) (*((type *)(list += ((sizeof(type) + 7) & 0xfffffffffffffff8))))
-#define va_end(list)
-
-#endif // _STDARG_H