1234567891011 |
- #ifndef __GBLIBC_STDARG_H_
- #define __GBLIBC_STDARG_H_
- typedef __builtin_va_list va_list;
- #define va_start(v, l) __builtin_va_start(v, l)
- #define va_arg(v, l) __builtin_va_arg(v, l)
- #define va_end(v) __builtin_va_end(v)
- #define va_copy(v, l) __builtin_va_copy(v, l)
- #endif
|