stdarg.h

Go to the documentation of this file.
00001 #ifndef _STDARG_H
00002 #define _STDARG_H
00003 
00004 FILE_LICENCE ( GPL2_OR_LATER );
00005 
00006 typedef __builtin_va_list va_list;
00007 #define va_start( ap, last ) __builtin_va_start ( ap, last )
00008 #define va_arg( ap, type ) __builtin_va_arg ( ap, type )
00009 #define va_end( ap ) __builtin_va_end ( ap )
00010 #define va_copy( dest, src ) __builtin_va_copy ( dest, src )
00011 
00012 #endif /* _STDARG_H */

Generated on Tue Apr 6 20:01:09 2010 for gPXE by  doxygen 1.5.7.1