summaryrefslogtreecommitdiff
path: root/sys/arch/m68k/include/stdarg.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/m68k/include/stdarg.h')
-rw-r--r--sys/arch/m68k/include/stdarg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/m68k/include/stdarg.h b/sys/arch/m68k/include/stdarg.h
index d1b832d93e8..bde1c366e3c 100644
--- a/sys/arch/m68k/include/stdarg.h
+++ b/sys/arch/m68k/include/stdarg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: stdarg.h,v 1.10 2006/04/09 03:07:52 deraadt Exp $ */
+/* $OpenBSD: stdarg.h,v 1.11 2008/10/23 21:25:07 kettenis Exp $ */
/* $NetBSD: stdarg.h,v 1.14 1995/12/25 23:15:33 mycroft Exp $ */
/*-
@@ -57,7 +57,7 @@ typedef __va_list va_list;
sizeof(type) : __va_size(type))))
#if __ISO_C_VISIBLE >= 1999
-#define va_copy(dest, src) \
+#define __va_copy(dest, src) \
((dest) = (src))
#endif