blob: d9222ff41c234bf3e47c45e7ef1c6a0c6544f324 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <stdarg.h>
/** copy a va_list **/
#define va_copy(dest, src) __builtin_va_copy(dest, src)
/***
copies the TYPE(va_list) ARGUMENT(src) to ARGUMENT(dest), including the current
state of the list.
***/
/*
PROTOTYPE(void va_copy(va_list dest, va_list src);)
STDC(199901)
*/
|