toaruos/kernel/include/va_list.h
2011-12-14 17:47:30 -06:00

11 lines
280 B
C

#ifndef VA_LIST_H
#define VA_LIST_H
typedef __builtin_va_list va_list;
#define va_start(ap,last) __builtin_va_start(ap, last)
#define va_end(ap) __builtin_va_end(ap)
#define va_arg(ap,type) __builtin_va_arg(ap,type)
#define va_copy(dest, src) __builtin_va_copy(dest,src)
#endif