diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2013-10-07 10:01:23 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2013-10-07 10:01:23 +0000 |
| commit | eafc73a8a9799fde9dd81d2a548c051a88936afc (patch) | |
| tree | 6386b136809a0c54509f8af13e913af8150ca58e | |
| parent | 3cf98c19e84cfcefb75a295201e39c43215ca328 (diff) | |
Notes
| -rw-r--r-- | sys/x86/include/stdarg.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/x86/include/stdarg.h b/sys/x86/include/stdarg.h index c315dfcee135..95bd02a37bb3 100644 --- a/sys/x86/include/stdarg.h +++ b/sys/x86/include/stdarg.h @@ -64,6 +64,8 @@ typedef __va_list va_list; (((sizeof(type) + sizeof(long) - 1) / sizeof(long)) * sizeof(long)) #define va_start(ap, last) \ ((ap) = (va_list)&(last) + __va_size(last)) +#define va_copy(dst, src) \ + ((dst) = (src)) #define va_arg(ap, type) \ (*(type *)((ap) += __va_size(type), (ap) - __va_size(type))) #define va_end(ap) |
