summaryrefslogtreecommitdiffstats
path: root/sys/arch/sparc/include/stdarg.h
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2005-12-14 23:51:32 +0000
committerderaadt <deraadt@openbsd.org>2005-12-14 23:51:32 +0000
commit5440b162e6740c2f4c0e04e2cbaff708999fdace (patch)
tree24693e1c2761dd2ca17a5e248748f86fe910abdf /sys/arch/sparc/include/stdarg.h
parentsync (diff)
downloadwireguard-openbsd-5440b162e6740c2f4c0e04e2cbaff708999fdace.tar.xz
wireguard-openbsd-5440b162e6740c2f4c0e04e2cbaff708999fdace.zip
make va_arg() map to nothing; ok millert
Diffstat (limited to 'sys/arch/sparc/include/stdarg.h')
-rw-r--r--sys/arch/sparc/include/stdarg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc/include/stdarg.h b/sys/arch/sparc/include/stdarg.h
index 110ad7593dc..0642174b4b6 100644
--- a/sys/arch/sparc/include/stdarg.h
+++ b/sys/arch/sparc/include/stdarg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: stdarg.h,v 1.8 2005/12/14 21:46:31 millert Exp $ */
+/* $OpenBSD: stdarg.h,v 1.9 2005/12/14 23:51:33 deraadt Exp $ */
/* $NetBSD: stdarg.h,v 1.10 1996/12/27 20:55:28 pk Exp $ */
/*
@@ -104,6 +104,6 @@ typedef _BSD_VA_LIST_ va_list;
((dest) = (src))
#endif
-#define va_end(ap) ((void)0)
+#define va_end(ap)
#endif /* !_SPARC_STDARG_H_ */