freestnd-c-hdrs-0bsd/stdarg.h

12 lines
259 B
C
Raw Normal View History

2022-03-02 20:18:08 +03:00
#ifndef _STDARG_H
#define _STDARG_H 1
2022-02-15 07:46:37 +03:00
typedef __builtin_va_list va_list;
#define va_start(v, l) __builtin_va_start(v, l)
#define va_end(v) __builtin_va_end(v)
#define va_arg(v, l) __builtin_va_arg(v, l)
#define va_copy(d, s) __builtin_va_copy(d, s)
#endif