Formatting fix

This commit is contained in:
Michael Kerrisk 2005-12-01 14:05:11 +00:00
parent 59e8f714bd
commit f6179c2fbd
1 changed files with 2 additions and 2 deletions

View File

@ -39,8 +39,8 @@ mmap, munmap \- map or unmap files or devices into memory
.SH SYNOPSIS
.B #include <sys/mman.h>
.sp
.BI "void * mmap(void *" start ", size_t " length ", int " prot
.BI ", int " flags ", int " fd ", off_t " offset );
.BI "void * mmap(void *" start ", size_t " length ", int " prot ,
.BI "int " flags ", int " fd ", off_t " offset );
.sp
.BI "int munmap(void *" start ", size_t " length );
.SH DESCRIPTION