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