Browse Source

Zap extra spaces from function pointer arguments

Pointed out by Joachim Schipper (joachim at joachimschipper.nl)
OPENBSD_5_2
guenther 12 years ago
parent
commit
de1260708b
2 changed files with 8 additions and 8 deletions
  1. +3
    -3
      src/lib/libc/stdlib/bsearch.3
  2. +5
    -5
      src/lib/libc/stdlib/tsearch.3

+ 3
- 3
src/lib/libc/stdlib/bsearch.3 View File

@ -29,9 +29,9 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE. .\" SUCH DAMAGE.
.\" .\"
.\" $OpenBSD: bsearch.3,v 1.7 2007/05/31 19:19:31 jmc Exp $
.\" $OpenBSD: bsearch.3,v 1.8 2012/07/08 10:25:55 guenther Exp $
.\" .\"
.Dd $Mdocdate: May 31 2007 $
.Dd $Mdocdate: July 8 2012 $
.Dt BSEARCH 3 .Dt BSEARCH 3
.Os .Os
.Sh NAME .Sh NAME
@ -40,7 +40,7 @@
.Sh SYNOPSIS .Sh SYNOPSIS
.Fd #include <stdlib.h> .Fd #include <stdlib.h>
.Ft void * .Ft void *
.Fn bsearch "const void *key" "const void *base" "size_t nmemb" "size_t size" "int (*compar) (const void *, const void *)"
.Fn bsearch "const void *key" "const void *base" "size_t nmemb" "size_t size" "int (*compar)(const void *, const void *)"
.Sh DESCRIPTION .Sh DESCRIPTION
The The
.Fn bsearch .Fn bsearch


+ 5
- 5
src/lib/libc/stdlib/tsearch.3 View File

@ -1,4 +1,4 @@
.\" $OpenBSD: tsearch.3,v 1.17 2012/07/08 10:14:35 guenther Exp $
.\" $OpenBSD: tsearch.3,v 1.18 2012/07/08 10:25:55 guenther Exp $
.\" .\"
.\" Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> .\" Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com>
.\" .\"
@ -26,13 +26,13 @@
.Sh SYNOPSIS .Sh SYNOPSIS
.Fd #include <search.h> .Fd #include <search.h>
.Ft void * .Ft void *
.Fn tdelete "const void *key" "void **rootp" "int (*compar) (const void *, const void *)"
.Fn tdelete "const void *key" "void **rootp" "int (*compar)(const void *, const void *)"
.Ft void * .Ft void *
.Fn tfind "const void *key" "void * const *rootp" "int (*compar) (const void *, const void *)"
.Fn tfind "const void *key" "void * const *rootp" "int (*compar)(const void *, const void *)"
.Ft void * .Ft void *
.Fn tsearch "const void *key" "void **rootp" "int (*compar) (const void *, const void *)"
.Fn tsearch "const void *key" "void **rootp" "int (*compar)(const void *, const void *)"
.Ft void .Ft void
.Fn twalk "const void *root" "void (*action) (const void *, VISIT, int)"
.Fn twalk "const void *root" "void (*action)(const void *, VISIT, int)"
.Sh DESCRIPTION .Sh DESCRIPTION
The The
.Fn tdelete , .Fn tdelete ,


Loading…
Cancel
Save