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/m68k | |
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/m68k')
-rw-r--r-- | sys/arch/m68k/include/stdarg.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/arch/m68k/include/stdarg.h b/sys/arch/m68k/include/stdarg.h index bde1c366e3c..3a44a425b42 100644 --- a/sys/arch/m68k/include/stdarg.h +++ b/sys/arch/m68k/include/stdarg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stdarg.h,v 1.11 2008/10/23 21:25:07 kettenis Exp $ */ +/* $OpenBSD: stdarg.h,v 1.12 2014/03/11 19:45:27 guenther Exp $ */ /* $NetBSD: stdarg.h,v 1.14 1995/12/25 23:15:33 mycroft Exp $ */ /*- @@ -43,12 +43,8 @@ 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 *)((ap) += __va_size(type), \ |