From ff340ae492915a1723450c148641b594326c5fd8 Mon Sep 17 00:00:00 2001 From: Mystery Man Date: Mon, 4 Apr 2005 19:00:13 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'V10_2_19mdk'. --- mdk-stage1/dietlibc/include/stdarg.h | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 mdk-stage1/dietlibc/include/stdarg.h (limited to 'mdk-stage1/dietlibc/include/stdarg.h') diff --git a/mdk-stage1/dietlibc/include/stdarg.h b/mdk-stage1/dietlibc/include/stdarg.h deleted file mode 100644 index 3a21bdb56..000000000 --- a/mdk-stage1/dietlibc/include/stdarg.h +++ /dev/null @@ -1,24 +0,0 @@ -#ifndef _STDARG_H -#define _STDARG_H - -#include - -#if (__GNUC__ > 2) || ((__GNUC__ == 2) && (__GNUC_MINOR__ >= 96)) - -typedef __builtin_va_list va_list; -#define va_start(v,l) __builtin_stdarg_start((v),l) -#define va_end __builtin_va_end -#define va_arg __builtin_va_arg -#define __va_copy(d,s) __builtin_va_copy((d),(s)) - -#endif - -#ifndef va_end -#include -#endif - -#if !defined(__STRICT_ANSI__) || __STDC_VERSION__ + 0 >= 199900L -#define va_copy(d,s) __va_copy(d,s) -#endif - -#endif -- cgit v1.2.1