From d693f8a2f409b2c66e25fa6806821c2130e0e4a8 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Sat, 11 Feb 2012 19:38:51 +0100 Subject: [PATCH] Fixed broken . --- libmaxsi/c/hsrc/stdarg.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/libmaxsi/c/hsrc/stdarg.h b/libmaxsi/c/hsrc/stdarg.h index 7d71613c..15129553 100644 --- a/libmaxsi/c/hsrc/stdarg.h +++ b/libmaxsi/c/hsrc/stdarg.h @@ -31,11 +31,6 @@ __BEGIN_DECLS @include(va_list.h) -#define va_start(ap, argN) ap = (void*) ((&argN) + 1) -#define va_copy(dest, src) dest = src -#define va_arg(ap, type) (ap = (void*) ((type*) ap) + 1, *(((type*) ap) - 1) -#define va_end(ap) ap = null - __END_DECLS #endif