Place SYNOPSIS comments inside C comments (/* ... */).

This commit is contained in:
Michael Kerrisk 2007-07-18 19:54:03 +00:00
parent 9da59cfa09
commit e81aee2dc8
1 changed files with 7 additions and 6 deletions

View File

@ -26,9 +26,10 @@
.SH NAME
reboot \- reboot or enable/disable Ctrl-Alt-Del
.SH SYNOPSIS
For libc4 and libc5 the library call and the system call are identical,
and since kernel version 2.1.30 there are symbolic names
LINUX_REBOOT_* for the constants and a fourth argument to the call:
/* For libc4 and libc5 the library call and the system call
are identical, and since kernel version 2.1.30 there are
symbolic names LINUX_REBOOT_* for the constants and a
fourth argument to the call: */
.sp
.B #include <unistd.h>
.br
@ -36,9 +37,9 @@ LINUX_REBOOT_* for the constants and a fourth argument to the call:
.sp
.BI "int reboot(int " magic ", int " magic2 ", int " flag ", void *" arg );
.sp
Under glibc some of the constants involved have gotten symbolic names RB_*,
and the library call is a 1-argument wrapper around the 3-argument
system call:
/* Under glibc some of the constants involved have gotten
symbolic names RB_*, and the library call is a 1-argument
wrapper around the 3-argument system call: */
.sp
.B #include <unistd.h>
.br