man2/*: srcfix: trim trailing space

Remove superfluous space at the end of a processed input line.

  There is no change in the output from "nroff" and "groff".

Signed-off-by: Bjarni Ingi Gislason <bjarniig@rhi.hi.is>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Bjarni Ingi Gislason 2020-06-12 03:23:23 +00:00 committed by Michael Kerrisk
parent 7ba3e56fe6
commit 77ca5b1d08
14 changed files with 17 additions and 17 deletions

View File

@ -40,7 +40,7 @@ execve \- execute program
.SH SYNOPSIS
.B #include <unistd.h>
.PP
.BI "int execve(const char *" pathname ", char *const " argv "[], "
.BI "int execve(const char *" pathname ", char *const " argv [],
.br
.BI " char *const " envp []);
.SH DESCRIPTION

View File

@ -40,7 +40,7 @@ poll, ppoll \- wait for some event on a file descriptor
.B #include <signal.h>
.B #include <poll.h>
.PP
.BI "int ppoll(struct pollfd *" fds ", nfds_t " nfds ", "
.BI "int ppoll(struct pollfd *" fds ", nfds_t " nfds ,
.BI " const struct timespec *" tmo_p ", const sigset_t *" sigmask );
.fi
.SH DESCRIPTION

View File

@ -109,7 +109,7 @@ ptrace \- process trace
.nf
.B #include <sys/ptrace.h>
.PP
.BI "long ptrace(enum __ptrace_request " request ", pid_t " pid ", "
.BI "long ptrace(enum __ptrace_request " request ", pid_t " pid ,
.BI " void *" addr ", void *" data );
.fi
.SH DESCRIPTION

View File

@ -168,7 +168,7 @@ is
.BR SIGCHLD ,
do not receive notification when child processes stop (i.e., when they
receive one of
.BR SIGSTOP ", " SIGTSTP ", " SIGTTIN ", "
.BR SIGSTOP ", " SIGTSTP ", " SIGTTIN ,
or
.BR SIGTTOU )
or resume (i.e., they receive
@ -849,7 +849,7 @@ points to memory which is not a valid part of the process address space.
An invalid signal was specified.
This will also be generated if an attempt
is made to change the action for
.BR SIGKILL " or " SIGSTOP ", "
.BR SIGKILL " or " SIGSTOP ,
which cannot be caught or ignored.
.SH CONFORMING TO
POSIX.1-2001, POSIX.1-2008, SVr4.

View File

@ -32,7 +32,7 @@ for queued signals
.PP
.BI "int sigwaitinfo(const sigset_t *" set ", siginfo_t *" info ");"
.PP
.BI "int sigtimedwait(const sigset_t *" set ", siginfo_t *" info ", "
.BI "int sigtimedwait(const sigset_t *" set ", siginfo_t *" info ,
.BI " const struct timespec *" timeout ");"
.fi
.PP