summaryrefslogtreecommitdiff
path: root/src/lib/libc/stdlib
diff options
context:
space:
mode:
authorjsg <>2004-10-01 04:08:45 +0000
committerjsg <>2004-10-01 04:08:45 +0000
commit286f2c9acc73fa2c79290ce6e5c7437d99f9f865 (patch)
tree743ce68bfe07e7ee77a3366ea07a99ec1240255c /src/lib/libc/stdlib
parentb04ecbf4bc7e9fd2c6b5fc4f2c8510fc84e73b64 (diff)
downloadopenbsd-286f2c9acc73fa2c79290ce6e5c7437d99f9f865.tar.gz
openbsd-286f2c9acc73fa2c79290ce6e5c7437d99f9f865.tar.bz2
openbsd-286f2c9acc73fa2c79290ce6e5c7437d99f9f865.zip
add some missing $, ok djm@ 'That looks fine to me' millert@
Diffstat (limited to 'src/lib/libc/stdlib')
-rw-r--r--src/lib/libc/stdlib/lsearch.32
-rw-r--r--src/lib/libc/stdlib/lsearch.c2
-rw-r--r--src/lib/libc/stdlib/tfind.c2
-rw-r--r--src/lib/libc/stdlib/tsearch.c2
4 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/libc/stdlib/lsearch.3 b/src/lib/libc/stdlib/lsearch.3
index 2adc51096d..818aa1bb43 100644
--- a/src/lib/libc/stdlib/lsearch.3
+++ b/src/lib/libc/stdlib/lsearch.3
@@ -1,3 +1,5 @@
1.\" $OpenBSD: lsearch.3,v 1.4 2004/10/01 04:08:45 jsg Exp $
2.\"
1.\" Copyright (c) 1989, 1991, 1993 3.\" Copyright (c) 1989, 1991, 1993
2.\" The Regents of the University of California. All rights reserved. 4.\" The Regents of the University of California. All rights reserved.
3.\" 5.\"
diff --git a/src/lib/libc/stdlib/lsearch.c b/src/lib/libc/stdlib/lsearch.c
index 82483d1c82..0815430199 100644
--- a/src/lib/libc/stdlib/lsearch.c
+++ b/src/lib/libc/stdlib/lsearch.c
@@ -1,3 +1,5 @@
1/* $OpenBSD: lsearch.c,v 1.3 2004/10/01 04:08:45 jsg Exp $ */
2
1/* 3/*
2 * Copyright (c) 1989, 1993 4 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved. 5 * The Regents of the University of California. All rights reserved.
diff --git a/src/lib/libc/stdlib/tfind.c b/src/lib/libc/stdlib/tfind.c
index 5c3b8c17f5..34b916db6c 100644
--- a/src/lib/libc/stdlib/tfind.c
+++ b/src/lib/libc/stdlib/tfind.c
@@ -1,3 +1,5 @@
1/* $OpenBSD: tfind.c,v 1.4 2004/10/01 04:08:45 jsg Exp $ */
2
1/* 3/*
2 * 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
3 * the AT&T man page says. 5 * the AT&T man page says.
diff --git a/src/lib/libc/stdlib/tsearch.c b/src/lib/libc/stdlib/tsearch.c
index 0ad5866172..67388b4e7f 100644
--- a/src/lib/libc/stdlib/tsearch.c
+++ b/src/lib/libc/stdlib/tsearch.c
@@ -1,3 +1,5 @@
1/* $OpenBSD: tsearch.c,v 1.4 2004/10/01 04:08:45 jsg Exp $ */
2
1/* 3/*
2 * 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
3 * the AT&T man page says. 5 * the AT&T man page says.