summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Downs <downsj@cvs.openbsd.org>1999-06-03 21:13:46 +0000
committerJason Downs <downsj@cvs.openbsd.org>1999-06-03 21:13:46 +0000
commitcc44d3566e12fb903f307a8308d65b910f790e8c (patch)
treef4ae7511e8603857d38ad4aea1d4e0a157da6b1d
parentf6ac84d36e1eb6015d724332588fb97a5ed73988 (diff)
Same problem as i386, same fix. From Theo.
-rw-r--r--sys/arch/m68k/include/stdarg.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/m68k/include/stdarg.h b/sys/arch/m68k/include/stdarg.h
index d378612655c..c3499057e4d 100644
--- a/sys/arch/m68k/include/stdarg.h
+++ b/sys/arch/m68k/include/stdarg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: stdarg.h,v 1.3 1996/05/29 18:38:39 niklas Exp $ */
+/* $OpenBSD: stdarg.h,v 1.4 1999/06/03 21:13:45 downsj Exp $ */
/* $NetBSD: stdarg.h,v 1.14 1995/12/25 23:15:33 mycroft Exp $ */
/*-
@@ -46,8 +46,13 @@ typedef _BSD_VA_LIST_ va_list;
#define __va_size(type) \
(((sizeof(type) + sizeof(long) - 1) / sizeof(long)) * sizeof(long))
+#ifdef __GNUC__
+#define va_start(ap, last) \
+ ((ap) = (va_list)__builtin_next_arg(last))
+#else
#define va_start(ap, last) \
((ap) = (va_list)&(last) + __va_size(last))
+#endif
#define va_arg(ap, type) \
(*(type *)((ap) += __va_size(type), \