summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdlib
diff options
context:
space:
mode:
authorjsg <jsg@openbsd.org>2004-10-01 04:08:45 +0000
committerjsg <jsg@openbsd.org>2004-10-01 04:08:45 +0000
commit48f0b6465133a635499ad47faaa893a94c8e70a8 (patch)
treeabfb1085e28c148b38ece3609314e0b85a6c66ca /lib/libc/stdlib
parentadd the time for that thing... (diff)
downloadwireguard-openbsd-48f0b6465133a635499ad47faaa893a94c8e70a8.tar.xz
wireguard-openbsd-48f0b6465133a635499ad47faaa893a94c8e70a8.zip
add some missing $, ok djm@ 'That looks fine to me' millert@
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r--lib/libc/stdlib/lsearch.32
-rw-r--r--lib/libc/stdlib/lsearch.c2
-rw-r--r--lib/libc/stdlib/tfind.c2
-rw-r--r--lib/libc/stdlib/tsearch.c2
4 files changed, 8 insertions, 0 deletions
diff --git a/lib/libc/stdlib/lsearch.3 b/lib/libc/stdlib/lsearch.3
index 2adc51096dd..818aa1bb43d 100644
--- a/lib/libc/stdlib/lsearch.3
+++ b/lib/libc/stdlib/lsearch.3
@@ -1,3 +1,5 @@
+.\" $OpenBSD: lsearch.3,v 1.4 2004/10/01 04:08:45 jsg Exp $
+.\"
.\" Copyright (c) 1989, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
.\"
diff --git a/lib/libc/stdlib/lsearch.c b/lib/libc/stdlib/lsearch.c
index 82483d1c82d..08154301998 100644
--- a/lib/libc/stdlib/lsearch.c
+++ b/lib/libc/stdlib/lsearch.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: lsearch.c,v 1.3 2004/10/01 04:08:45 jsg Exp $ */
+
/*
* Copyright (c) 1989, 1993
* The Regents of the University of California. All rights reserved.
diff --git a/lib/libc/stdlib/tfind.c b/lib/libc/stdlib/tfind.c
index 5c3b8c17f57..34b916db6cc 100644
--- a/lib/libc/stdlib/tfind.c
+++ b/lib/libc/stdlib/tfind.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: tfind.c,v 1.4 2004/10/01 04:08:45 jsg Exp $ */
+
/*
* Tree search generalized from Knuth (6.2.2) Algorithm T just like
* the AT&T man page says.
diff --git a/lib/libc/stdlib/tsearch.c b/lib/libc/stdlib/tsearch.c
index 0ad5866172a..67388b4e7f6 100644
--- a/lib/libc/stdlib/tsearch.c
+++ b/lib/libc/stdlib/tsearch.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: tsearch.c,v 1.4 2004/10/01 04:08:45 jsg Exp $ */
+
/*
* Tree search generalized from Knuth (6.2.2) Algorithm T just like
* the AT&T man page says.