diff options
| author | Michael Kerrisk <mtk.manpages@gmail.com> | 2007-07-10 04:51:30 +0000 |
|---|---|---|
| committer | Michael Kerrisk <mtk.manpages@gmail.com> | 2007-07-10 04:51:30 +0000 |
| commit | 52e87bbed1fd751edfe4803074b7b6502d6ccb88 (patch) | |
| tree | f07c89564f31361f370207f8996d84d83995ff26 | |
| parent | 9f1a6ca72cf0220b3515f340494088b006b69473 (diff) | |
| download | man-pages-52e87bbed1fd751edfe4803074b7b6502d6ccb88.tar.gz | |
Fix missing semicolon in prototype
| -rw-r--r-- | man2/arch_prctl.2 | 2 | ||||
| -rw-r--r-- | man2/epoll_create.2 | 2 | ||||
| -rw-r--r-- | man2/epoll_ctl.2 | 3 | ||||
| -rw-r--r-- | man2/inotify_init.2 | 2 | ||||
| -rw-r--r-- | man3/fmemopen.3 | 2 |
5 files changed, 6 insertions, 5 deletions
diff --git a/man2/arch_prctl.2 b/man2/arch_prctl.2 index 7f24ff2ffb..dffcb82ea3 100644 --- a/man2/arch_prctl.2 +++ b/man2/arch_prctl.2 @@ -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 () diff --git a/man2/epoll_create.2 b/man2/epoll_create.2 index fd4eaa14c2..d49cb35e26 100644 --- a/man2/epoll_create.2 +++ b/man2/epoll_create.2 @@ -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 diff --git a/man2/epoll_ctl.2 b/man2/epoll_ctl.2 index 9d3e78d59e..f3427b2763 100644 --- a/man2/epoll_ctl.2 +++ b/man2/epoll_ctl.2 @@ -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 diff --git a/man2/inotify_init.2 b/man2/inotify_init.2 index 0feb5b1a09..411d8553ee 100644 --- a/man2/inotify_init.2 +++ b/man2/inotify_init.2 @@ -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 diff --git a/man3/fmemopen.3 b/man3/fmemopen.3 index 94c883860e..21383020b9 100644 --- a/man3/fmemopen.3 +++ b/man3/fmemopen.3 @@ -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 () |
