summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorguenther <>2015-09-26 16:03:48 +0000
committerguenther <>2015-09-26 16:03:48 +0000
commit54b589383a8d0f4f198375132fea9bc8f69f47fd (patch)
treef80db1d90c71a796e8d2866739ea81a32a534725 /src/lib
parentca580e2bfe9f8324b71c776a177b4d792996a630 (diff)
downloadopenbsd-54b589383a8d0f4f198375132fea9bc8f69f47fd.tar.gz
openbsd-54b589383a8d0f4f198375132fea9bc8f69f47fd.tar.bz2
openbsd-54b589383a8d0f4f198375132fea9bc8f69f47fd.zip
lint is dead: delete useless LINTLIBRARY comments
ok millert@
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libc/stdlib/tfind.c3
-rw-r--r--src/lib/libc/stdlib/tsearch.c3
2 files changed, 2 insertions, 4 deletions
diff --git a/src/lib/libc/stdlib/tfind.c b/src/lib/libc/stdlib/tfind.c
index 0d1d5196d8..49f9dbc17a 100644
--- a/src/lib/libc/stdlib/tfind.c
+++ b/src/lib/libc/stdlib/tfind.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: tfind.c,v 1.6 2014/03/16 18:38:30 guenther Exp $ */ 1/* $OpenBSD: tfind.c,v 1.7 2015/09/26 16:03:48 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
@@ -10,7 +10,6 @@
10 * 10 *
11 * Totally public domain. 11 * Totally public domain.
12 */ 12 */
13/*LINTLIBRARY*/
14#include <search.h> 13#include <search.h>
15 14
16typedef struct node_t 15typedef struct node_t
diff --git a/src/lib/libc/stdlib/tsearch.c b/src/lib/libc/stdlib/tsearch.c
index 6a525e8bf0..1dd31454eb 100644
--- a/src/lib/libc/stdlib/tsearch.c
+++ b/src/lib/libc/stdlib/tsearch.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: tsearch.c,v 1.9 2015/08/20 21:49:29 deraadt Exp $ */ 1/* $OpenBSD: tsearch.c,v 1.10 2015/09/26 16:03:48 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
@@ -10,7 +10,6 @@
10 * 10 *
11 * Totally public domain. 11 * Totally public domain.
12 */ 12 */
13/*LINTLIBRARY*/
14 13
15#include <search.h> 14#include <search.h>
16#include <stdlib.h> 15#include <stdlib.h>