You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

stdarg.h 320B

12345678910
  1. #ifndef _STDARG_H
  2. #define _STDARG_H
  3. typedef __builtin_va_list va_list;
  4. #define va_start( ap, last ) __builtin_va_start ( ap, last )
  5. #define va_arg( ap, type ) __builtin_va_arg ( ap, type )
  6. #define va_end( ap ) __builtin_va_end ( ap )
  7. #define va_copy( dest, src ) __builtin_va_copy ( dest, src )
  8. #endif /* _STDARG_H */