summaryrefslogblamecommitdiffstats
path: root/src/include/stdarg.h
blob: a4eb711d0e0c50f87fbe93ed1192c88ec83428a4 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                            
#ifndef _STDARG_H
#define _STDARG_H

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 */