diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2014-03-16 18:38:31 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2014-03-16 18:38:31 +0000 |
commit | ae716892e1b0b04c4d372d360c51d9aa771f26bf (patch) | |
tree | 096e09e26195e233e96229724a6df4ef8689044d /include/stdbool.h | |
parent | d8ea0537d04586cf528af2e15cdbcbf0a122d6e6 (diff) |
lint is dead (long live the lint!), so stop using it as a cpp conditional
(namespace pollution!) or talking about its opinion on code.
ok krw@
Diffstat (limited to 'include/stdbool.h')
-rw-r--r-- | include/stdbool.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/stdbool.h b/include/stdbool.h index 34304130081..c0b6565078f 100644 --- a/include/stdbool.h +++ b/include/stdbool.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stdbool.h,v 1.5 2010/07/24 22:17:03 guenther Exp $ */ +/* $OpenBSD: stdbool.h,v 1.6 2014/03/16 18:38:30 guenther Exp $ */ /* * Written by Marc Espie, September 25, 1999 @@ -10,7 +10,7 @@ #ifndef __cplusplus -#if (defined(__GNUC__) && __GNUC__ >= 3) || defined(__PCC__) || defined(lint) +#if (defined(__GNUC__) && __GNUC__ >= 3) || defined(__PCC__) /* Support for _C99: type _Bool is already built-in. */ #define false 0 #define true 1 |