Fix missing semicolon in prototype

This commit is contained in:
Michael Kerrisk 2007-07-10 04:51:30 +00:00
parent 9f1a6ca72c
commit 52e87bbed1
5 changed files with 6 additions and 5 deletions

View File

@ -29,7 +29,7 @@ arch_prctl \- set architecture specific thread state
.br
.B #include <sys/prctl.h>
.sp
.BI "int arch_prctl(int code, unsigned long addr)"
.BI "int arch_prctl(int " code ", unsigned long " addr );
.SH DESCRIPTION
The
.BR arch_prctl ()

View File

@ -27,7 +27,7 @@ epoll_create \- open an epoll file descriptor
.SH SYNOPSIS
.B #include <sys/epoll.h>
.sp
.BI "int epoll_create(int " size )
.BI "int epoll_create(int " size );
.SH DESCRIPTION
Open an
.B epoll

View File

@ -24,7 +24,8 @@ epoll_ctl \- control interface for an epoll descriptor
.SH SYNOPSIS
.B #include <sys/epoll.h>
.sp
.BI "int epoll_ctl(int " epfd ", int " op ", int " fd ", struct epoll_event *" event )
.BI "int epoll_ctl(int " epfd ", int " op ", int " fd \
", struct epoll_event *" event );
.SH DESCRIPTION
Control an
.B epoll

View File

@ -31,7 +31,7 @@ inotify_init \- initialize an inotify instance
.SH SYNOPSIS
.B #include <sys/inotify.h>
.sp
.BI "int inotify_init(void)"
.BI "int inotify_init(void);"
.SH DESCRIPTION
.BR inotify_init ()
initializes a new inotify instance and returns a file descriptor associated

View File

@ -13,7 +13,7 @@ fmemopen, open_memstream \- open memory as stream
.BI "FILE *fmemopen(void *"buf ", size_t "size ","
.BI "const char *" mode ");"
.sp
.BI "FILE *open_memstream(char **" ptr ", size_t *" sizeloc )
.BI "FILE *open_memstream(char **" ptr ", size_t *" sizeloc );
.SH DESCRIPTION
The
.BR fmemopen ()