aboutsummaryrefslogtreecommitdiffstats
path: root/man3
diff options
context:
space:
mode:
Diffstat (limited to 'man3')
-rw-r--r--man3/cfree.32
-rw-r--r--man3/mpool.314
-rw-r--r--man3/offsetof.32
-rw-r--r--man3/rpc.32
4 files changed, 10 insertions, 10 deletions
diff --git a/man3/cfree.3 b/man3/cfree.3
index 4c843c5bf5..64b069f064 100644
--- a/man3/cfree.3
+++ b/man3/cfree.3
@@ -84,7 +84,7 @@ A frequently asked question is "Can I use
to free memory allocated with
.BR calloc (3),
or do I need
-.BR cfree ()?"
+.BR cfree ()?
Answer: use
.BR free (3).
.LP
diff --git a/man3/mpool.3 b/man3/mpool.3
index a8ddc75b74..befd90501e 100644
--- a/man3/mpool.3
+++ b/man3/mpool.3
@@ -41,21 +41,21 @@ mpool \- shared memory buffer pool
.B #include <mpool.h>
.sp
.BI "MPOOL *mpool_open(DBT *" key ", int " fd ", pgno_t " pagesize \
-", pgno_t " maxcache ");
+", pgno_t " maxcache );
.sp
.BI "void mpool_filter(MPOOL *" mp ", void (*pgin)(void *, pgno_t, void *),"
.BI " void (*" pgout ")(void *, pgno_t, void *),"
-.BI " void *" pgcookie ");
+.BI " void *" pgcookie );
.sp
-.BI "void *mpool_new(MPOOL *" mp ", pgno_t *" pgnoaddr ");
+.BI "void *mpool_new(MPOOL *" mp ", pgno_t *" pgnoaddr );
.sp
-.BI "void *mpool_get(MPOOL *" mp ", pgno_t " pgno ", unsigned int " flags ");
+.BI "void *mpool_get(MPOOL *" mp ", pgno_t " pgno ", unsigned int " flags );
.sp
-.BI "int mpool_put(MPOOL *" mp ", void *" pgaddr ", unsigned int " flags ");
+.BI "int mpool_put(MPOOL *" mp ", void *" pgaddr ", unsigned int " flags );
.sp
-.BI "int mpool_sync(MPOOL *" mp ");
+.BI "int mpool_sync(MPOOL *" mp );
.sp
-.BI "int mpool_close(MPOOL *" mp ");
+.BI "int mpool_close(MPOOL *" mp );
.fi
.SH DESCRIPTION
.I Mpool
diff --git a/man3/offsetof.3 b/man3/offsetof.3
index 8b0a89022c..b30d456140 100644
--- a/man3/offsetof.3
+++ b/man3/offsetof.3
@@ -30,7 +30,7 @@ offsetof \- offset of a structure member
.nf
.B #include <stddef.h>
.sp
-.BI "size_t offsetof(" type ", " member ");
+.BI "size_t offsetof(" type ", " member );
.fi
.SH DESCRIPTION
The macro
diff --git a/man3/rpc.3 b/man3/rpc.3
index 34421bf306..e2439a3f17 100644
--- a/man3/rpc.3
+++ b/man3/rpc.3
@@ -633,7 +633,7 @@ This routine returns one if it succeeds, zero otherwise.
.LP
.nf
.BI "int registerrpc(unsigned long " prognum ", unsigned long " versnum ,
-.BI " unsigned long " procnum ", char *(*" procname ")(char *),
+.BI " unsigned long " procnum ", char *(*" procname ")(char *),"
.BI " xdrproc_t " inproc ", xdrproc_t " outproc );
.fi
.IP