diff options
| author | Peter Wemm <peter@FreeBSD.org> | 2003-10-24 02:50:39 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 2003-10-24 02:50:39 +0000 |
| commit | cedb3695c1e06f7f0ed01ae6877f9ebef5d83cf4 (patch) | |
| tree | 3f1aa0589010c4cd0dfa7f08a9649993ee81b413 /sys/amd64/include/stdarg.h | |
| parent | 5c03a7c7f94c760e3d1d57bccdd0f938902ae184 (diff) | |
Notes
Diffstat (limited to 'sys/amd64/include/stdarg.h')
| -rw-r--r-- | sys/amd64/include/stdarg.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/amd64/include/stdarg.h b/sys/amd64/include/stdarg.h index c13137d93efa..60a204ad177f 100644 --- a/sys/amd64/include/stdarg.h +++ b/sys/amd64/include/stdarg.h @@ -46,9 +46,12 @@ typedef __va_list va_list; #define va_arg(ap, type) \ __builtin_va_arg((ap), type) +#define __va_copy(dest, src) \ + __builtin_va_copy((dest), (src)) + #if __ISO_C_VISIBLE >= 1999 #define va_copy(dest, src) \ - __builtin_va_copy((dest), (src)) + __va_copy(dest, src) #endif #define va_end(ap) \ |
