00001 #ifndef _STDARG_H_ 00002 #define _STDARG_H_ 00003 typedef char *va_list; 00004 00005 #define va_start(ap, last) (ap = ((va_list)&(last))) 00006 #define va_arg(ap, type) ((type *)(ap -= sizeof(type)))[0] 00007 #define va_end(ap) 00008 00009 #endif /* _STDARG_H_ */