From 0ea3222fb70c596dc5798f2e1db2b6698354ada9 Mon Sep 17 00:00:00 2001 From: Philip Guenther Date: Tue, 11 Mar 2014 19:45:29 +0000 Subject: lint is gone, and the 'lint' conditional was never in the implementation namespace, so stop changing behavior when it's #defined ok beck@ krw@ --- sys/arch/hppa64/include/stdarg.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'sys/arch/hppa64') diff --git a/sys/arch/hppa64/include/stdarg.h b/sys/arch/hppa64/include/stdarg.h index 1282b18740b..b4e6f24d1cf 100644 --- a/sys/arch/hppa64/include/stdarg.h +++ b/sys/arch/hppa64/include/stdarg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stdarg.h,v 1.7 2010/12/30 05:01:36 tedu Exp $ */ +/* $OpenBSD: stdarg.h,v 1.8 2014/03/11 19:45:27 guenther Exp $ */ /*- * Copyright (c) 1991, 1993 @@ -39,12 +39,7 @@ typedef __va_list va_list; -#ifdef lint -#define va_start(ap,lastarg) ((ap) = (ap)) -#define __va_copy(dst, src) ((dst) = (src)) -#else #define va_start(ap,lastarg) ((ap) = (va_list)__builtin_saveregs()) -#endif /* lint */ #define va_arg(ap,type) \ (sizeof(type) > 8 ? \ -- cgit v1.2.3