From 167217bec15c9c7aa70ba2a3dc9c689b3cd91872 Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Mon, 14 May 2001 14:19:32 +0000 Subject: import new version of dietlibc --- mdk-stage1/dietlibc/dietstdarg.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 mdk-stage1/dietlibc/dietstdarg.h (limited to 'mdk-stage1/dietlibc/dietstdarg.h') diff --git a/mdk-stage1/dietlibc/dietstdarg.h b/mdk-stage1/dietlibc/dietstdarg.h new file mode 100644 index 000000000..827671b22 --- /dev/null +++ b/mdk-stage1/dietlibc/dietstdarg.h @@ -0,0 +1,12 @@ +#include + +/* this assumes that va_copy() will be a macro, it is on gcc */ +#ifndef va_copy +# ifdef __va_copy +# define va_copy(x, y) __va_copy(x, y) +# else +/* assume copying it works... */ +# define va_copy(x, y) x = y +# endif +#endif + -- cgit v1.2.1