/****************************************************************************** COPYRIGHT(C) JONAS 'SORTIE' TERMANSEN 2011. This file is part of LibMaxsi. LibMaxsi is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. LibMaxsi is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with LibMaxsi. If not, see . stdarg.h Handle variable argument list ******************************************************************************/ #ifndef _STDARG_H #define _STDARG_H 1 #include __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