From 96af28e70eca24e66067eae1b00cfc51a58c9513 Mon Sep 17 00:00:00 2001 From: Theo de Raadt Date: Sun, 9 Apr 2006 03:07:54 +0000 Subject: #ifdef lint wraps for va_start --- sys/arch/vax/include/stdarg.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'sys/arch/vax') diff --git a/sys/arch/vax/include/stdarg.h b/sys/arch/vax/include/stdarg.h index b3aca7c0a8a..aabf5629563 100644 --- a/sys/arch/vax/include/stdarg.h +++ b/sys/arch/vax/include/stdarg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stdarg.h,v 1.8 2006/01/06 18:53:05 millert Exp $ */ +/* $OpenBSD: stdarg.h,v 1.9 2006/04/09 03:07:53 deraadt Exp $ */ /* $NetBSD: stdarg.h,v 1.11 1999/05/03 16:30:34 christos Exp $ */ /*- @@ -47,8 +47,12 @@ typedef __va_list va_list; #define __va_size(type) \ (((sizeof(type) + sizeof(long) - 1) / sizeof(long)) * sizeof(long)) +#ifdef lint +#define va_start(ap,lastarg) ((ap) = (ap)) +#else #define va_start(ap, last) \ ((ap) = (va_list)__builtin_next_arg(last)) +#endif /* lint */ #define va_arg(ap, type) \ (*(type *)(void *)((ap) += __va_size(type), (ap) - __va_size(type))) -- cgit v1.2.3