From eafc73a8a9799fde9dd81d2a548c051a88936afc Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Mon, 7 Oct 2013 10:01:23 +0000 Subject: [PATCH] Add a va_copy() to our fall-back stdarg implementation for use with lint(1) Approved by: re@ (glebius@) --- sys/x86/include/stdarg.h | 2 ++ 1 file changed, 2 insertions(+) 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)