aboutsummaryrefslogtreecommitdiffstats
path: root/man2
diff options
context:
space:
mode:
Diffstat (limited to 'man2')
-rw-r--r--man2/fcntl.22
-rw-r--r--man2/getpriority.22
-rw-r--r--man2/gettimeofday.210
-rw-r--r--man2/kill.22
-rw-r--r--man2/sysinfo.22
5 files changed, 9 insertions, 9 deletions
diff --git a/man2/fcntl.2 b/man2/fcntl.2
index db2d46fac6..838b88cf2f 100644
--- a/man2/fcntl.2
+++ b/man2/fcntl.2
@@ -331,7 +331,7 @@ instead.
The above record locks may be either advisory or mandatory,
and are advisory by default.
To make use of mandatory locks, mandatory locking must be enabled
-(using the "-o mand" option to
+(using the "\-o mand" option to
.BR mount (8))
for the file system containing the
file to be locked and enabled on the file itself (by disabling
diff --git a/man2/getpriority.2 b/man2/getpriority.2
index 9019e79415..30eaa0736e 100644
--- a/man2/getpriority.2
+++ b/man2/getpriority.2
@@ -155,7 +155,7 @@ The actual priority range varies between kernel versions.
Linux before 1.3.36 had \-infinity..15. Linux since 1.3.43 has \-20..19,
and the system call getpriority returns 40..1 for these values
(since negative numbers are error codes).
-The library call converts N into 20-N.
+The library call converts N into 20\-N.
.LP
On some systems, the range of nice values is \-20..20.
.LP
diff --git a/man2/gettimeofday.2 b/man2/gettimeofday.2
index 54fec837f5..f647bcd541 100644
--- a/man2/gettimeofday.2
+++ b/man2/gettimeofday.2
@@ -156,16 +156,16 @@ The following macros are defined to operate on a struct timeval :
.nf
#define timerisset(tvp)\\
.ti +8
-((tvp)->tv_sec || (tvp)->tv_usec)
+((tvp)\->tv_sec || (tvp)\->tv_usec)
#define timercmp(tvp, uvp, cmp)\\
.in +8
-((tvp)->tv_sec cmp (uvp)->tv_sec ||\\
-(tvp)->tv_sec == (uvp)->tv_sec &&\\
-(tvp)->tv_usec cmp (uvp)->tv_usec)
+((tvp)\->tv_sec cmp (uvp)\->tv_sec ||\\
+(tvp)\->tv_sec == (uvp)\->tv_sec &&\\
+(tvp)\->tv_usec cmp (uvp)\->tv_usec)
.in -8
#define timerclear(tvp)\\
.ti +8
-((tvp)->tv_sec = (tvp)->tv_usec = 0)
+((tvp)\->tv_sec = (tvp)\->tv_usec = 0)
.fi
.PP
If either
diff --git a/man2/kill.2 b/man2/kill.2
index 3d277a7649..fdda8aa683 100644
--- a/man2/kill.2
+++ b/man2/kill.2
@@ -113,7 +113,7 @@ POSIX 1003.1-2001 requires that \fIkill(\-1,sig)\fP send \fIsig\fP
to all processes that the current process may send signals to,
except possibly for some implementation-defined system processes.
Linux allows a process to signal itself, but on Linux the call
-\fIkill(-\1,sig)\fP does not signal the current process.
+\fIkill(\-1,sig)\fP does not signal the current process.
.LP
POSIX 1003.1-2003 requires that if a process sends a signal to itself,
and that process does not have the signal blocked, and no other thread
diff --git a/man2/sysinfo.2 b/man2/sysinfo.2
index a2ec8e9f36..4dafb821d7 100644
--- a/man2/sysinfo.2
+++ b/man2/sysinfo.2
@@ -58,7 +58,7 @@ struct sysinfo {
unsigned long totalhigh; /* Total high memory size */
unsigned long freehigh; /* Available high memory size */
unsigned int mem_unit; /* Memory unit size in bytes */
- char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding for libc5 */
+ char _f[20\-2*sizeof(long)\-sizeof(int)]; /* Padding for libc5 */
};
.fi
.RE