diff options
Diffstat (limited to 'sys/arch/m68k/include/stdarg.h')
-rw-r--r-- | sys/arch/m68k/include/stdarg.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/arch/m68k/include/stdarg.h b/sys/arch/m68k/include/stdarg.h index 2ce90b1d71c..d4db7b594e8 100644 --- a/sys/arch/m68k/include/stdarg.h +++ b/sys/arch/m68k/include/stdarg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stdarg.h,v 1.6 2003/06/02 23:27:48 millert Exp $ */ +/* $OpenBSD: stdarg.h,v 1.7 2005/12/14 21:46:31 millert Exp $ */ /* $NetBSD: stdarg.h,v 1.14 1995/12/25 23:15:33 mycroft Exp $ */ /*- @@ -35,6 +35,7 @@ #ifndef _M68K_STDARG_H_ #define _M68K_STDARG_H_ +#include <sys/cdefs.h> #include <machine/ansi.h> typedef _BSD_VA_LIST_ va_list; @@ -56,9 +57,7 @@ typedef _BSD_VA_LIST_ va_list; sizeof(type) != __va_size(type) ? \ sizeof(type) : __va_size(type)))) -#if !defined(_ANSI_SOURCE) && \ - (!defined(_POSIX_C_SOURCE) && !defined(_XOPEN_SOURCE) || \ - defined(_ISOC99_SOURCE) || (__STDC_VERSION__ - 0) >= 199901L) +#if __ISO_C_VISIBLE >= 1999 #define va_copy(dest, src) \ ((dest) = (src)) #endif |