diff options
author | guenther <> | 2014-03-16 18:38:30 +0000 |
---|---|---|
committer | guenther <> | 2014-03-16 18:38:30 +0000 |
commit | 24f86b9a50c6ac98e07bd3171a559924ecaeb02e (patch) | |
tree | 973e71279ae52a0f7a078c36535d0435841d58c0 /src/lib | |
parent | f5bcbc6a2190076edc7526542a5a4f25804bda11 (diff) | |
download | openbsd-24f86b9a50c6ac98e07bd3171a559924ecaeb02e.tar.gz openbsd-24f86b9a50c6ac98e07bd3171a559924ecaeb02e.tar.bz2 openbsd-24f86b9a50c6ac98e07bd3171a559924ecaeb02e.zip |
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 'src/lib')
-rw-r--r-- | src/lib/libc/stdlib/tfind.c | 4 | ||||
-rw-r--r-- | src/lib/libc/stdlib/tsearch.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libc/stdlib/tfind.c b/src/lib/libc/stdlib/tfind.c index ff6bcd742d..0d1d5196d8 100644 --- a/src/lib/libc/stdlib/tfind.c +++ b/src/lib/libc/stdlib/tfind.c | |||
@@ -1,10 +1,10 @@ | |||
1 | /* $OpenBSD: tfind.c,v 1.5 2005/03/30 18:51:49 pat Exp $ */ | 1 | /* $OpenBSD: tfind.c,v 1.6 2014/03/16 18:38:30 guenther Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Tree search generalized from Knuth (6.2.2) Algorithm T just like | 4 | * Tree search generalized from Knuth (6.2.2) Algorithm T just like |
5 | * the AT&T man page says. | 5 | * the AT&T man page says. |
6 | * | 6 | * |
7 | * The node_t structure is for internal use only, lint doesn't grok it. | 7 | * The node_t structure is for internal use only |
8 | * | 8 | * |
9 | * Written by reading the System V Interface Definition, not the code. | 9 | * Written by reading the System V Interface Definition, not the code. |
10 | * | 10 | * |
diff --git a/src/lib/libc/stdlib/tsearch.c b/src/lib/libc/stdlib/tsearch.c index 2f5e369f6a..a141085d2b 100644 --- a/src/lib/libc/stdlib/tsearch.c +++ b/src/lib/libc/stdlib/tsearch.c | |||
@@ -1,10 +1,10 @@ | |||
1 | /* $OpenBSD: tsearch.c,v 1.7 2012/02/06 20:29:54 guenther Exp $ */ | 1 | /* $OpenBSD: tsearch.c,v 1.8 2014/03/16 18:38:30 guenther Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Tree search generalized from Knuth (6.2.2) Algorithm T just like | 4 | * Tree search generalized from Knuth (6.2.2) Algorithm T just like |
5 | * the AT&T man page says. | 5 | * the AT&T man page says. |
6 | * | 6 | * |
7 | * The node_t structure is for internal use only, lint doesn't grok it. | 7 | * The node_t structure is for internal use only |
8 | * | 8 | * |
9 | * Written by reading the System V Interface Definition, not the code. | 9 | * Written by reading the System V Interface Definition, not the code. |
10 | * | 10 | * |