diff options
author | bde <bde@FreeBSD.org> | 2001-02-05 15:19:56 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2001-02-05 15:19:56 +0000 |
commit | 4846f5fbda4891afb9256098046f9c6f44cd41c8 (patch) | |
tree | 48c105bf8a7c1089e3f7e2da714a2ce2c67eb08d /lib/libc/stdlib | |
parent | fa4a1ef18ecf49e508ea524df13595f39d2c9bff (diff) | |
download | FreeBSD-src-4846f5fbda4891afb9256098046f9c6f44cd41c8.zip FreeBSD-src-4846f5fbda4891afb9256098046f9c6f44cd41c8.tar.gz |
Fixed C error(s) in synopsis. Many were hiding under mdoc errors.
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r-- | lib/libc/stdlib/tsearch.3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdlib/tsearch.3 b/lib/libc/stdlib/tsearch.3 index a474a69..b6d66f8 100644 --- a/lib/libc/stdlib/tsearch.3 +++ b/lib/libc/stdlib/tsearch.3 @@ -38,7 +38,7 @@ .Ft void * .Fn tdelete "const void *key" "void **rootp" "int (*compar) (const void *, const void *)" .Ft void * -.Fn tfind "const void *key" "const void **rootp" "int (*compar) (const void *, const void *)" +.Fn tfind "const void *key" "void **rootp" "int (*compar) (const void *, const void *)" .Ft void * .Fn tsearch "const void *key" "void **rootp" "int (*compar) (const void *, const void *)" .Ft void |