opuntiaOS - an operating system targeting x86 and ARMv7
at master 277 B view raw
1#ifndef _LIBC_STDARG_H 2#define _LIBC_STDARG_H 3 4#include <sys/cdefs.h> 5#include <sys/types.h> 6 7__BEGIN_DECLS 8 9#define va_start(v, l) __builtin_va_start(v, l) 10#define va_end(v) __builtin_va_end(v) 11#define va_arg(v, l) __builtin_va_arg(v, l) 12 13__END_DECLS 14 15#endif // _LIBC_STDARG_H