diff options
author | 2014-03-16 18:38:30 +0000 | |
---|---|---|
committer | 2014-03-16 18:38:30 +0000 | |
commit | acf82b0a9d74522936f8f278bd20ee7685e38f68 (patch) | |
tree | 9b44c9437624a4a4ea694a145d46f7ddcdff9ea8 /lib/libc/stdlib/tfind.c | |
parent | tweak path checks. now you can create keys named ......pub (diff) | |
download | wireguard-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/tfind.c')
-rw-r--r-- | lib/libc/stdlib/tfind.c | 4 |
1 files changed, 2 insertions, 2 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. * |