diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-12-15 07:07:54 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-12-15 07:07:54 +0000 |
commit | d3fbc9d4acd40e5f45bb62bae971ee5ff968458f (patch) | |
tree | 7174a58cdb38eea9ea5c48afc16c664dd7408138 /sys/arch/sparc | |
parent | ac7290bedd859af35ac785e9ea7c76863b1e4b32 (diff) |
__BSD_VISIBLE is not compared against a date
Diffstat (limited to 'sys/arch/sparc')
-rw-r--r-- | sys/arch/sparc/include/stdarg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc/include/stdarg.h b/sys/arch/sparc/include/stdarg.h index 0642174b4b6..5d8823939d9 100644 --- a/sys/arch/sparc/include/stdarg.h +++ b/sys/arch/sparc/include/stdarg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stdarg.h,v 1.9 2005/12/14 23:51:33 deraadt Exp $ */ +/* $OpenBSD: stdarg.h,v 1.10 2005/12/15 07:07:53 deraadt Exp $ */ /* $NetBSD: stdarg.h,v 1.10 1996/12/27 20:55:28 pk Exp $ */ /* @@ -99,7 +99,7 @@ typedef _BSD_VA_LIST_ va_list; *__va_arg(ap, type *) : __va_size(type) == 8 ? \ __va_8byte(ap, type) : __va_arg(ap, type)) -#if __BSD_VISIBLE >= 1999 +#if __BSD_VISIBLE #define va_copy(dest, src) \ ((dest) = (src)) #endif |