From 4f670845ff9ab6c48bcb5f7bf4d4ef6dc3c3064b Mon Sep 17 00:00:00 2001 From: manuel Date: Tue, 27 Mar 2012 11:51:08 +0200 Subject: reorganize file structure to match the upstream requirements --- pintos-progos/lib/stdarg.h | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 pintos-progos/lib/stdarg.h (limited to 'pintos-progos/lib/stdarg.h') diff --git a/pintos-progos/lib/stdarg.h b/pintos-progos/lib/stdarg.h deleted file mode 100644 index 32622b5..0000000 --- a/pintos-progos/lib/stdarg.h +++ /dev/null @@ -1,14 +0,0 @@ -#ifndef __LIB_STDARG_H -#define __LIB_STDARG_H - -/* GCC has functionality as built-ins, - so all we need is to use it. */ - -typedef __builtin_va_list va_list; - -#define va_start(LIST, ARG) __builtin_va_start (LIST, ARG) -#define va_end(LIST) __builtin_va_end (LIST) -#define va_arg(LIST, TYPE) __builtin_va_arg (LIST, TYPE) -#define va_copy(DST, SRC) __builtin_va_copy (DST, SRC) - -#endif /* lib/stdarg.h */ -- cgit v1.2.3