diff options
author | 2015-09-26 16:03:48 +0000 | |
---|---|---|
committer | 2015-09-26 16:03:48 +0000 | |
commit | 89cd0876c414e6118d016a4e433b82db2c730404 (patch) | |
tree | bc7039cf38eba733e168706db1b46d3407f0a790 /lib/libc/stdlib/tfind.c | |
parent | lint is dead and C99 may be old enough to drive a car: delete LONGLONG (diff) | |
download | wireguard-openbsd-89cd0876c414e6118d016a4e433b82db2c730404.tar.xz wireguard-openbsd-89cd0876c414e6118d016a4e433b82db2c730404.zip |
lint is dead: delete useless LINTLIBRARY comments
ok millert@
Diffstat (limited to 'lib/libc/stdlib/tfind.c')
-rw-r--r-- | lib/libc/stdlib/tfind.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libc/stdlib/tfind.c b/lib/libc/stdlib/tfind.c index 0d1d5196d8b..49f9dbc17af 100644 --- a/lib/libc/stdlib/tfind.c +++ b/lib/libc/stdlib/tfind.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tfind.c,v 1.6 2014/03/16 18:38:30 guenther Exp $ */ +/* $OpenBSD: tfind.c,v 1.7 2015/09/26 16:03:48 guenther Exp $ */ /* * Tree search generalized from Knuth (6.2.2) Algorithm T just like @@ -10,7 +10,6 @@ * * Totally public domain. */ -/*LINTLIBRARY*/ #include <search.h> typedef struct node_t |