stdarg.h 275 B

1234567891011
  1. #ifndef __GBLIBC_STDARG_H_
  2. #define __GBLIBC_STDARG_H_
  3. typedef __builtin_va_list va_list;
  4. #define va_start(v, l) __builtin_va_start(v, l)
  5. #define va_arg(v, l) __builtin_va_arg(v, l)
  6. #define va_end(v) __builtin_va_end(v)
  7. #define va_copy(v, l) __builtin_va_copy(v, l)
  8. #endif