diff options
author | 2013-08-14 06:32:26 +0000 | |
---|---|---|
committer | 2013-08-14 06:32:26 +0000 | |
commit | 73d4fc9bd5f7838a0f9b6cdbb145f9c58519a740 (patch) | |
tree | 702a4ca0d53dfd62ca8003eba67c59d24908d15a /lib/libc/sys | |
parent | regen (diff) | |
download | wireguard-openbsd-73d4fc9bd5f7838a0f9b6cdbb145f9c58519a740.tar.xz wireguard-openbsd-73d4fc9bd5f7838a0f9b6cdbb145f9c58519a740.zip |
no longer any need to quote macro lines with >9 args;
From: Jan Stary
Diffstat (limited to 'lib/libc/sys')
-rw-r--r-- | lib/libc/sys/adjfreq.2 | 6 | ||||
-rw-r--r-- | lib/libc/sys/adjtime.2 | 6 | ||||
-rw-r--r-- | lib/libc/sys/flock.2 | 6 | ||||
-rw-r--r-- | lib/libc/sys/fsync.2 | 6 | ||||
-rw-r--r-- | lib/libc/sys/getdirentries.2 | 6 | ||||
-rw-r--r-- | lib/libc/sys/setresuid.2 | 6 | ||||
-rw-r--r-- | lib/libc/sys/sync.2 | 6 |
7 files changed, 21 insertions, 21 deletions
diff --git a/lib/libc/sys/adjfreq.2 b/lib/libc/sys/adjfreq.2 index 527638d17b1..f13400e14e6 100644 --- a/lib/libc/sys/adjfreq.2 +++ b/lib/libc/sys/adjfreq.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: adjfreq.2,v 1.4 2011/07/07 21:00:59 deraadt Exp $ +.\" $OpenBSD: adjfreq.2,v 1.5 2013/08/14 06:32:29 jmc Exp $ .\" .\" Copyright (c) 2006 Otto Moerbeek .\" @@ -23,12 +23,12 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.Dd $Mdocdate: July 7 2011 $ +.Dd $Mdocdate: August 14 2013 $ .Dt ADJFREQ 2 .Os .Sh NAME .Nm adjfreq -.Nd "correct the rate of the system clock" +.Nd correct the rate of the system clock .Sh SYNOPSIS .Fd #include <sys/types.h> .Fd #include <sys/time.h> diff --git a/lib/libc/sys/adjtime.2 b/lib/libc/sys/adjtime.2 index baa34023eb4..2b0f01ca58c 100644 --- a/lib/libc/sys/adjtime.2 +++ b/lib/libc/sys/adjtime.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: adjtime.2,v 1.19 2011/07/07 21:00:59 deraadt Exp $ +.\" $OpenBSD: adjtime.2,v 1.20 2013/08/14 06:32:28 jmc Exp $ .\" $NetBSD: adjtime.2,v 1.5 1995/10/12 15:40:44 jtc Exp $ .\" .\" Copyright (c) 1980, 1991, 1993 @@ -30,12 +30,12 @@ .\" .\" @(#)adjtime.2 8.1 (Berkeley) 6/4/93 .\" -.Dd $Mdocdate: July 7 2011 $ +.Dd $Mdocdate: August 14 2013 $ .Dt ADJTIME 2 .Os .Sh NAME .Nm adjtime -.Nd "correct the time to allow synchronization of the system clock" +.Nd correct the time to allow synchronization of the system clock .Sh SYNOPSIS .Fd #include <sys/time.h> .Ft int diff --git a/lib/libc/sys/flock.2 b/lib/libc/sys/flock.2 index 669faab343e..4b486d80260 100644 --- a/lib/libc/sys/flock.2 +++ b/lib/libc/sys/flock.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: flock.2,v 1.17 2013/07/17 05:42:11 schwarze Exp $ +.\" $OpenBSD: flock.2,v 1.18 2013/08/14 06:32:28 jmc Exp $ .\" $NetBSD: flock.2,v 1.5 1995/02/27 12:32:32 cgd Exp $ .\" .\" Copyright (c) 1983, 1991, 1993 @@ -30,12 +30,12 @@ .\" .\" @(#)flock.2 8.2 (Berkeley) 12/11/93 .\" -.Dd $Mdocdate: July 17 2013 $ +.Dd $Mdocdate: August 14 2013 $ .Dt FLOCK 2 .Os .Sh NAME .Nm flock -.Nd "apply or remove an advisory lock on an open file" +.Nd apply or remove an advisory lock on an open file .Sh SYNOPSIS .Fd #include <fcntl.h> .Pp diff --git a/lib/libc/sys/fsync.2 b/lib/libc/sys/fsync.2 index 4a2f96ef91f..8b646b217e4 100644 --- a/lib/libc/sys/fsync.2 +++ b/lib/libc/sys/fsync.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: fsync.2,v 1.12 2013/07/17 05:42:11 schwarze Exp $ +.\" $OpenBSD: fsync.2,v 1.13 2013/08/14 06:32:28 jmc Exp $ .\" $NetBSD: fsync.2,v 1.4 1995/02/27 12:32:38 cgd Exp $ .\" .\" Copyright (c) 1983, 1993 @@ -30,13 +30,13 @@ .\" .\" @(#)fsync.2 8.1 (Berkeley) 6/4/93 .\" -.Dd $Mdocdate: July 17 2013 $ +.Dd $Mdocdate: August 14 2013 $ .Dt FSYNC 2 .Os .Sh NAME .Nm fsync , .Nm fdatasync -.Nd "synchronize a file's in-core state with that on disk" +.Nd synchronize a file's in-core state with that on disk .Sh SYNOPSIS .Fd #include <unistd.h> .Ft int diff --git a/lib/libc/sys/getdirentries.2 b/lib/libc/sys/getdirentries.2 index 0e1bb2a4e87..9234fca0a76 100644 --- a/lib/libc/sys/getdirentries.2 +++ b/lib/libc/sys/getdirentries.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: getdirentries.2,v 1.23 2010/10/27 19:07:27 deraadt Exp $ +.\" $OpenBSD: getdirentries.2,v 1.24 2013/08/14 06:32:28 jmc Exp $ .\" $NetBSD: getdirentries.2,v 1.7 1995/10/12 15:40:50 jtc Exp $ .\" .\" Copyright (c) 1989, 1991, 1993 @@ -30,12 +30,12 @@ .\" .\" @(#)getdirentries.2 8.1 (Berkeley) 6/9/93 .\" -.Dd $Mdocdate: October 27 2010 $ +.Dd $Mdocdate: August 14 2013 $ .Dt GETDIRENTRIES 2 .Os .Sh NAME .Nm getdirentries -.Nd "get directory entries in a filesystem independent format" +.Nd get directory entries in a filesystem independent format .Sh SYNOPSIS .Fd #include <dirent.h> .Ft int diff --git a/lib/libc/sys/setresuid.2 b/lib/libc/sys/setresuid.2 index 2d139b526ae..074463be507 100644 --- a/lib/libc/sys/setresuid.2 +++ b/lib/libc/sys/setresuid.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: setresuid.2,v 1.6 2013/05/07 01:44:57 dlg Exp $ +.\" $OpenBSD: setresuid.2,v 1.7 2013/08/14 06:32:29 jmc Exp $ .\" .\" Copyright (c) 2000 .\" Sheldon Hearn. All rights reserved. @@ -21,7 +21,7 @@ .\" .\" $FreeBSD: src/lib/libc/sys/setresuid.2,v 1.12 2001/10/01 16:09:02 ru Exp $ .\" -.Dd $Mdocdate: May 7 2013 $ +.Dd $Mdocdate: August 14 2013 $ .Dt SETRESUID 2 .Os .Sh NAME @@ -29,7 +29,7 @@ .Nm getresuid , .Nm setresgid , .Nm setresuid -.Nd "get or set real, effective and saved user or group ID" +.Nd get or set real, effective and saved user or group ID .Sh SYNOPSIS .Fd #include <sys/types.h> .Fd #include <unistd.h> diff --git a/lib/libc/sys/sync.2 b/lib/libc/sys/sync.2 index c8a4462314b..b4fd0605e17 100644 --- a/lib/libc/sys/sync.2 +++ b/lib/libc/sys/sync.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: sync.2,v 1.13 2013/03/30 06:44:44 guenther Exp $ +.\" $OpenBSD: sync.2,v 1.14 2013/08/14 06:32:29 jmc Exp $ .\" $NetBSD: sync.2,v 1.4 1995/02/27 12:38:41 cgd Exp $ .\" .\" Copyright (c) 1980, 1991, 1993 @@ -30,12 +30,12 @@ .\" .\" @(#)sync.2 8.1 (Berkeley) 6/4/93 .\" -.Dd $Mdocdate: March 30 2013 $ +.Dd $Mdocdate: August 14 2013 $ .Dt SYNC 2 .Os .Sh NAME .Nm sync -.Nd "synchronize disk block in-core status with that on disk" +.Nd synchronize disk block in-core status with that on disk .Sh SYNOPSIS .Fd #include <unistd.h> .Ft void |