summaryrefslogtreecommitdiff
path: root/sys/arch/hppa64
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2014-03-11 19:45:29 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2014-03-11 19:45:29 +0000
commit0ea3222fb70c596dc5798f2e1db2b6698354ada9 (patch)
treef103b881a4bb2aeafe44ea5251ff8d61c5249e91 /sys/arch/hppa64
parent24dc6033bb5e10e9a21d280b2d03080b5e7c06c2 (diff)
lint is gone, and the 'lint' conditional was never in the implementation
namespace, so stop changing behavior when it's #defined ok beck@ krw@
Diffstat (limited to 'sys/arch/hppa64')
-rw-r--r--sys/arch/hppa64/include/stdarg.h7
1 files changed, 1 insertions, 6 deletions
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 ? \