taglinefilesource code
AP13include/stdarg.h#define va_start(AP, LASTARG)             \
AP14include/stdarg.h(AP = ((char *) &(LASTARG) + __va_rounded_size (LASTARG)))
AP16include/stdarg.h#define va_start(AP, LASTARG)             \
AP18include/stdarg.hAP = ((char *) &(LASTARG) + __va_rounded_size (LASTARG)))
AP22include/stdarg.h#define va_end(AP)
AP24include/stdarg.h#define va_arg(AP, TYPE)            \
AP25include/stdarg.h(AP += __va_rounded_size (TYPE),          \
AP26include/stdarg.h*((TYPE *) (AP - __va_rounded_size (TYPE))))