aboutsummaryrefslogtreecommitdiffstats
path: root/man2/clone.2
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2017-08-16 23:18:50 +0200
committerMichael Kerrisk <mtk.manpages@gmail.com>2017-08-16 23:18:50 +0200
commit47f743f12ecc581d15d9dedd512592f2a9ae4dcc (patch)
treec35299b88d869a87a1a3db9eca919eb6861dcb51 /man2/clone.2
parent0ffeaeae10f06691aab86c51caba57094c6a6f3a (diff)
downloadman-pages-47f743f12ecc581d15d9dedd512592f2a9ae4dcc.tar.gz
chroot.2, clone.2, epoll_wait.2, execve.2, getgroups.2: ffix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Diffstat (limited to 'man2/clone.2')
-rw-r--r--man2/clone.212
1 files changed, 7 insertions, 5 deletions
diff --git a/man2/clone.2 b/man2/clone.2
index eb6903a0d8..c80b37ed6b 100644
--- a/man2/clone.2
+++ b/man2/clone.2
@@ -1214,13 +1214,15 @@ argument includes
.BR CLONE_VM .)
To get the truth, it was sometimes necessary to use code such as the following:
.PP
-.nf
- #include <syscall.h>
+.in +4n
+.EX
+#include <syscall.h>
- pid_t mypid;
+pid_t mypid;
- mypid = syscall(SYS_getpid);
-.fi
+mypid = syscall(SYS_getpid);
+.EE
+.in
.\" See also the following bug reports
.\" https://bugzilla.redhat.com/show_bug.cgi?id=417521
.\" http://sourceware.org/bugzilla/show_bug.cgi?id=6910