diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2014-03-11 19:45:29 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2014-03-11 19:45:29 +0000 |
commit | 0ea3222fb70c596dc5798f2e1db2b6698354ada9 (patch) | |
tree | f103b881a4bb2aeafe44ea5251ff8d61c5249e91 /sys/arch/hppa | |
parent | 24dc6033bb5e10e9a21d280b2d03080b5e7c06c2 (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/hppa')
-rw-r--r-- | sys/arch/hppa/include/stdarg.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/arch/hppa/include/stdarg.h b/sys/arch/hppa/include/stdarg.h index 9587297195e..dfb118039a9 100644 --- a/sys/arch/hppa/include/stdarg.h +++ b/sys/arch/hppa/include/stdarg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stdarg.h,v 1.10 2010/12/30 05:01:36 tedu Exp $ */ +/* $OpenBSD: stdarg.h,v 1.11 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 ? \ |