Fix unbalanced quotes in formatting macros.

This commit is contained in:
Michael Kerrisk 2008-01-12 08:57:58 +00:00
parent c342a49b0f
commit da8cb51e61
9 changed files with 17 additions and 17 deletions

View File

@ -766,7 +766,7 @@ and
take a
.I struct unimapdesc *
or a
.IR const struct unimapdesc *" ,
.IR "const struct unimapdesc *" ,
respectively.
.I entries
points to a buffer of

View File

@ -31,10 +31,10 @@ mlock, munlock, mlockall, munlockall \- lock and unlock memory
.nf
.B #include <sys/mman.h>
.sp
.BI "int mlock(const void *" addr ", size_t " len ");
.BI "int munlock(const void *" addr ", size_t " len ");
.BI "int mlock(const void *" addr ", size_t " len );
.BI "int munlock(const void *" addr ", size_t " len );
.sp
.BI "int mlockall(int " flags ");
.BI "int mlockall(int " flags );
.B int munlockall(void);
.fi
.SH DESCRIPTION

View File

@ -36,7 +36,7 @@ mprotect \- set protection on a region of memory
.nf
.B #include <sys/mman.h>
.sp
.BI "int mprotect(const void *" addr ", size_t *" len ", int " prot ");
.BI "int mprotect(const void *" addr ", size_t *" len ", int " prot );
.fi
.SH DESCRIPTION
.BR mprotect ()

View File

@ -37,7 +37,7 @@ mremap \- re-map a virtual memory address
.br
.B #include <sys/mman.h>
.sp
.BI "void *mremap(void *" old_address ", size_t " old_size ",
.BI "void *mremap(void *" old_address ", size_t " old_size ,
.BI " size_t " new_size ", int " flags );
.fi
.SH DESCRIPTION

View File

@ -28,7 +28,7 @@ set console_loglevel
.SH SYNOPSIS
.nf
.BI "int syslog(int " type ", char *" bufp ", int " len );
.B " /* No wrapper provided in glibc */
.B " /* No wrapper provided in glibc */"
.sp
/* The glibc interface */
.br

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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