| ![[BACK]](/cvs/cvsweb/icons/back.gif) Return to stdarg.h CVS log ![[TXT]](/cvs/cvsweb/icons/text.gif) | ![[DIR]](/cvs/cvsweb/icons/dir.gif) Up to  [RetroPC.NET] / xmil / adv / agb / advlibc / include | 
RetroPC CVS restarting 2005/02/04 (T.Yui)
#ifndef _ADVLIBC_STRARG_ #define _ADVLIBC_STRARG_ #include "./advtypes.h" #define va_start(ap, last) (ap) = (va_list)&(last) + sizeof(last) #define va_arg(ap, t) ((t *)(ap += sizeof(t)))[-1] #define va_end(ap) (ap) = NULL #endif