ref: 3aab523c3622c93b4ebcc34a9098ff9634fc4ef2
dir: /libc/include/stdarg.h/
/* See LICENSE file for copyright and license details. */ #ifndef _STDARG_H #define _STDARG_H #define va_list __builtin_va_list #define va_start(ap, last) __builtin_va_start((ap), (last)) #define va_end(ap) __builtin_va_end((ap)) #define va_copy(to, from) __builtin_va_copy((to), (from)) #define va_arg(to, type) __builtin_va_arg((to), (type)) #endif