Include dependency graph for arg.h:

Go to the source code of this file.
Defines | |
| #define | va_start(ap, lst) ((ap) = (va_list)&(lst) + sizeof(lst)) |
| #define | va_arg(ap, type) (((type *)((ap) = (va_list)( (sizeof(type) <= 4) ? ((__address)((ap) + 2*4 - 1) & (~3)) : ((__address)((ap) + 2*8 -1) & (~7)) )))[-1]) |
| #define | va_copy(dst, src) ((dst)=(src)) |
| #define | va_end(ap) |
Typedefs | |
| typedef __address | va_list |
Definition in file arg.h.
1.4.6