summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdlib/tsearch.c
diff options
context:
space:
mode:
authorguenther <guenther@openbsd.org>2014-03-16 18:38:30 +0000
committerguenther <guenther@openbsd.org>2014-03-16 18:38:30 +0000
commitacf82b0a9d74522936f8f278bd20ee7685e38f68 (patch)
tree9b44c9437624a4a4ea694a145d46f7ddcdff9ea8 /lib/libc/stdlib/tsearch.c
parenttweak path checks. now you can create keys named ......pub (diff)
downloadwireguard-openbsd-acf82b0a9d74522936f8f278bd20ee7685e38f68.tar.xz
wireguard-openbsd-acf82b0a9d74522936f8f278bd20ee7685e38f68.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 'lib/libc/stdlib/tsearch.c')
-rw-r--r--lib/libc/stdlib/tsearch.c4
1 files changed, 2 insertions, 2 deletions
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.
*