Go to the source code of this file.
Defines | |
#define | va_start(LIST, ARG) __builtin_va_start (LIST, ARG) |
#define | va_end(LIST) __builtin_va_end (LIST) |
#define | va_arg(LIST, TYPE) __builtin_va_arg (LIST, TYPE) |
#define | va_copy(DST, SRC) __builtin_va_copy (DST, SRC) |
Typedefs | |
typedef __builtin_va_list | va_list |
#define va_arg | ( | LIST, | |||
TYPE | ) | __builtin_va_arg (LIST, TYPE) |
#define va_end | ( | LIST | ) | __builtin_va_end (LIST) |
Definition at line 11 of file stdarg.h.
Referenced by __printf(), checkf(), debug_panic(), do_mkdir(), do_remove(), do_touch(), fail(), fail_io(), hprintf(), msg(), printf(), snprintf(), and usage().
#define va_start | ( | LIST, | |||
ARG | ) | __builtin_va_start (LIST, ARG) |
Definition at line 10 of file stdarg.h.
Referenced by __printf(), checkf(), debug_panic(), do_mkdir(), do_remove(), do_touch(), fail(), fail_io(), hprintf(), msg(), printf(), snprintf(), and usage().