shithub: scc

ref: 63c625229ddae2be9785f8c9a0e4e5c5d2a6cb6c
dir: /libc/include/stdarg.h/

View raw version
/* 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