#ifndef _INCLUDE_STDARG_H #define _INCLUDE_STDARG_H /* ** $VER: stdarg.h 10.1 (19.7.95) ** Includes Release 40.15 ** ** '(C) Copyright 1995 Haage & Partner Computer GmbH' ** All Rights Reserved */ #ifdef __cplusplus extern "C" { #endif typedef unsigned int va_list; #define va_start(AP,LASTARG) (AP)=(unsigned int)(&LASTARG)+sizeof(LASTARG) #define va_arg(AP,TYPE) ((AP)+=sizeof(TYPE), \ sizeof(TYPE)>1 ? ((AP)=(AP)+1&(-2)):(AP), \ ((TYPE*)AP)[-1]) #define va_end(AP) #ifdef __cplusplus } #endif #endif