Loading...
Searching...
No Matches
Go to the documentation of this file.
43#define STACKITEM int64_t
47#define VA_SIZE(TYPE) \
48 ((sizeof(TYPE)+sizeof(STACKITEM)-1) \
49 & ~(sizeof(STACKITEM)-1))
53#define va_start(AP, LASTARG) \
54 (AP = ((va_list)&(LASTARG)+VA_SIZE(LASTARG)))
59#define va_arg(AP, TYPE) \
60 (AP += VA_SIZE(TYPE), *((TYPE *)(AP - VA_SIZE(TYPE))))