summaryrefslogtreecommitdiff
path: root/src/stdarg/va_copy.c
blob: ad49c5c93ba7648dfa80bcc71803ca908a33e46e (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)
*/