diff options
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libc/stdlib/tfind.c | 3 | ||||
-rw-r--r-- | src/lib/libc/stdlib/tsearch.c | 3 |
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 | ||
16 | typedef struct node_t | 15 | typedef 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> |