2
0
mirror of https://github.com/xcat2/xcat-dep.git synced 2024-11-27 11:49:23 +00:00
xcat-dep/ipxe/src/include/stdarg.h
2010-11-12 16:09:47 +00:00

13 lines
353 B
C

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