hvf: use yacc & re2c to generate a system config parser
[hvf.git] / include / stdarg.h
blob9e5e7ab31653d26bb880c7f84b798bf90a97b4bb
1 #ifndef __STDARG_H
2 #define __STDARG_H
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)
8 #endif