stdarg.h 351 B

123456789101112131415161718192021
  1. #ifndef _STDARG_H
  2. #define _STDARG_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #define __NEED_va_list
  7. #include <bits/alltypes.h>
  8. #define va_start(v,l) __builtin_va_start(v,l)
  9. #define va_end(v) __builtin_va_end(v)
  10. #define va_arg(v,l) __builtin_va_arg(v,l)
  11. #define va_copy(d,s) __builtin_va_copy(d,s)
  12. #ifdef __cplusplus
  13. }
  14. #endif
  15. #endif