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