diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 1999-06-29 14:23:30 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 1999-06-29 14:23:30 +0000 |
commit | 6a688f997d0b8dd1613b72a835e903522c3497a7 (patch) | |
tree | 1d0a17a61216b1362daa2bf9a8a57bf9d0572793 | |
parent | 56f6529fc36c6db13ad6ff247464d6b0c9e0d023 (diff) |
.Fa int -> .Li int (should use literal macro to refer to data types)
-rw-r--r-- | lib/libc/sys/fcntl.2 | 12 | ||||
-rw-r--r-- | lib/libc/sys/getsockopt.2 | 4 | ||||
-rw-r--r-- | lib/libc/sys/ioctl.2 | 4 |
3 files changed, 10 insertions, 10 deletions
diff --git a/lib/libc/sys/fcntl.2 b/lib/libc/sys/fcntl.2 index c73778a570c..46baf45cb0b 100644 --- a/lib/libc/sys/fcntl.2 +++ b/lib/libc/sys/fcntl.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: fcntl.2,v 1.14 1999/06/29 14:09:54 aaron Exp $ +.\" $OpenBSD: fcntl.2,v 1.15 1999/06/29 14:23:28 aaron Exp $ .\" $NetBSD: fcntl.2,v 1.6 1995/02/27 12:32:29 cgd Exp $ .\" .\" Copyright (c) 1983, 1993 @@ -58,7 +58,7 @@ The third parameter is called and is technically a pointer to .Fa void , but is interpreted as an -.Fa int +.Li int by some commands, a pointer to a .Fa struct flock by others (see below), and ignored by the rest. @@ -73,7 +73,7 @@ Return a new descriptor as follows: Lowest numbered available descriptor greater than or equal to .Fa arg (interpreted as an -.Fa int ) . +.Li int ) . .It Same object references as the original descriptor. .It @@ -106,7 +106,7 @@ Set the close-on-exec flag associated with to the low-order bit of .Fa arg (interpreted as an -.Fa int ) . +.Li int ) . The flag should be specified as 0 (do not close-on-exec) or 1 (do close-on-exec). .It Dv F_GETFL @@ -117,7 +117,7 @@ is ignored). Set descriptor status flags to .Fa arg (interpreted as an -.Fa int ) . +.Li int ) . .It Dv F_GETOWN Get the process ID or process group currently receiving @@ -138,7 +138,7 @@ signals; process groups are specified by supplying .Fa arg (interpreted as an -.Fa int ) +.Li int ) as negative, otherwise .Fa arg is taken as a process ID. diff --git a/lib/libc/sys/getsockopt.2 b/lib/libc/sys/getsockopt.2 index 90941242e15..474655230f1 100644 --- a/lib/libc/sys/getsockopt.2 +++ b/lib/libc/sys/getsockopt.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: getsockopt.2,v 1.11 1999/06/29 14:10:02 aaron Exp $ +.\" $OpenBSD: getsockopt.2,v 1.12 1999/06/29 14:23:29 aaron Exp $ .\" $NetBSD: getsockopt.2,v 1.7 1995/02/27 12:33:29 cgd Exp $ .\" .\" Copyright (c) 1983, 1991, 1993 @@ -112,7 +112,7 @@ section 4 of the manual. .Pp Most socket-level options utilize an -.Fa int +.Li int parameter for .Fa optval . For diff --git a/lib/libc/sys/ioctl.2 b/lib/libc/sys/ioctl.2 index 33cfe6a00b7..b9de49dce3d 100644 --- a/lib/libc/sys/ioctl.2 +++ b/lib/libc/sys/ioctl.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: ioctl.2,v 1.8 1999/06/29 14:10:03 aaron Exp $ +.\" $OpenBSD: ioctl.2,v 1.9 1999/06/29 14:23:29 aaron Exp $ .\" $NetBSD: ioctl.2,v 1.5 1995/02/27 12:33:47 cgd Exp $ .\" .\" Copyright (c) 1980, 1991, 1993 @@ -62,7 +62,7 @@ and contains additional information needed by this device to perform the requested function. .Fa arg is either an -.Fa int +.Li int or a pointer to a device-specific data structure, depending upon the given .Fa request . |