aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2013-10-07 10:01:23 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2013-10-07 10:01:23 +0000
commiteafc73a8a9799fde9dd81d2a548c051a88936afc (patch)
tree6386b136809a0c54509f8af13e913af8150ca58e
parent3cf98c19e84cfcefb75a295201e39c43215ca328 (diff)
Notes
-rw-r--r--sys/x86/include/stdarg.h2
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)