summaryrefslogtreecommitdiff
path: root/sys/arch/mips64/include
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2005-12-14 23:51:34 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2005-12-14 23:51:34 +0000
commit47a7456ce1e9af6e957cfb8639dd47b5a3583a83 (patch)
tree03e32ab74ca9994c12999834f3339b66ac432ff8 /sys/arch/mips64/include
parent7ab46340a51beb790449437b4135985399c80005 (diff)
make va_arg() map to nothing; ok millert
Diffstat (limited to 'sys/arch/mips64/include')
-rw-r--r--sys/arch/mips64/include/stdarg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mips64/include/stdarg.h b/sys/arch/mips64/include/stdarg.h
index 1a4c0f18978..60e066da7d9 100644
--- a/sys/arch/mips64/include/stdarg.h
+++ b/sys/arch/mips64/include/stdarg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: stdarg.h,v 1.3 2005/12/14 21:46:31 millert Exp $ */
+/* $OpenBSD: stdarg.h,v 1.4 2005/12/14 23:51:33 deraadt Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -137,7 +137,7 @@ enum {
#ifndef va_end
void va_end (__gnuc_va_list); /* Defined in libgcc.a */
#endif
-#define va_end(__AP) ((void)0)
+#define va_end(__AP)
#if defined (__mips_eabi)