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 /lib/libc/stdlib | |
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 'lib/libc/stdlib')
-rw-r--r-- | lib/libc/stdlib/tfind.c | 4 | ||||
-rw-r--r-- | lib/libc/stdlib/tsearch.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/stdlib/tfind.c b/lib/libc/stdlib/tfind.c index ff6bcd742da..0d1d5196d8b 100644 --- a/lib/libc/stdlib/tfind.c +++ b/lib/libc/stdlib/tfind.c @@ -1,10 +1,10 @@ -/* $OpenBSD: tfind.c,v 1.5 2005/03/30 18:51:49 pat Exp $ */ +/* $OpenBSD: tfind.c,v 1.6 2014/03/16 18:38:30 guenther Exp $ */ /* * Tree search generalized from Knuth (6.2.2) Algorithm T just like * the AT&T man page says. * - * The node_t structure is for internal use only, lint doesn't grok it. + * The node_t structure is for internal use only * * Written by reading the System V Interface Definition, not the code. * diff --git a/lib/libc/stdlib/tsearch.c b/lib/libc/stdlib/tsearch.c index 2f5e369f6ad..a141085d2b3 100644 --- a/lib/libc/stdlib/tsearch.c +++ b/lib/libc/stdlib/tsearch.c @@ -1,10 +1,10 @@ -/* $OpenBSD: tsearch.c,v 1.7 2012/02/06 20:29:54 guenther Exp $ */ +/* $OpenBSD: tsearch.c,v 1.8 2014/03/16 18:38:30 guenther Exp $ */ /* * Tree search generalized from Knuth (6.2.2) Algorithm T just like * the AT&T man page says. * - * The node_t structure is for internal use only, lint doesn't grok it. + * The node_t structure is for internal use only * * Written by reading the System V Interface Definition, not the code. * |