summaryrefslogtreecommitdiff
path: root/sys/arch/mips64
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2008-10-23 21:25:09 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2008-10-23 21:25:09 +0000
commit7491e407e812bfeeca3f37e3defa99a2da9f149f (patch)
tree6134cb09e98b5d8f002421216f34fe5dc2ca7b35 /sys/arch/mips64
parent364005f7c07e04f6ee295584d5b7fa22a6e8b1c2 (diff)
Move the va_copy define to <sys/stdrag.h> making sure it is uniformaly
protected by __ISO_C_VISIBLE > 1999. With a little help from miod@. ok miod@
Diffstat (limited to 'sys/arch/mips64')
-rw-r--r--sys/arch/mips64/include/stdarg.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/arch/mips64/include/stdarg.h b/sys/arch/mips64/include/stdarg.h
index 769a7f9dc7b..5e8769beca7 100644
--- a/sys/arch/mips64/include/stdarg.h
+++ b/sys/arch/mips64/include/stdarg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: stdarg.h,v 1.6 2006/05/14 21:11:07 robert Exp $ */
+/* $OpenBSD: stdarg.h,v 1.7 2008/10/23 21:25:07 kettenis Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -243,8 +243,5 @@ void va_end (__gnuc_va_list); /* Defined in libgcc.a */
/* Copy __gnuc_va_list into another variable of this type. */
#define __va_copy(dest, src) (dest) = (src)
-#if __ISO_C_VISIBLE >= 1999
-#define va_copy __va_copy
-#endif
#endif /* !_MIPS_STDARG_H_ */