diff options
author | 2013-04-01 20:16:31 +0000 | |
---|---|---|
committer | 2013-04-01 20:16:31 +0000 | |
commit | f188d74bd9592e8a5da86bf492fc1094a2fb65ad (patch) | |
tree | 07f847bb5ce020164101a81e3ed9495acec624c2 /lib/libc/sys/mkfifo.2 | |
parent | Make ugen_get_cdesc() a generic function by renaming it to usbd_get_cdesc() (diff) | |
download | wireguard-openbsd-f188d74bd9592e8a5da86bf492fc1094a2fb65ad.tar.xz wireguard-openbsd-f188d74bd9592e8a5da86bf492fc1094a2fb65ad.zip |
When there are multiple groups of functions with their own #includes
listed, the #includes in each group are independent, so that users
don't need to guess at possible carry-over.
general idea ok otto@ millert@
actual diff ok jmc@ schwarze@
Diffstat (limited to 'lib/libc/sys/mkfifo.2')
-rw-r--r-- | lib/libc/sys/mkfifo.2 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/sys/mkfifo.2 b/lib/libc/sys/mkfifo.2 index 7cb23f37427..7fa8fe95b16 100644 --- a/lib/libc/sys/mkfifo.2 +++ b/lib/libc/sys/mkfifo.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mkfifo.2,v 1.10 2013/03/31 05:07:55 guenther Exp $ +.\" $OpenBSD: mkfifo.2,v 1.11 2013/04/01 20:16:31 guenther Exp $ .\" $NetBSD: mkfifo.2,v 1.8 1995/02/27 12:34:27 cgd Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 @@ -30,7 +30,7 @@ .\" .\" @(#)mkfifo.2 8.1 (Berkeley) 6/4/93 .\" -.Dd $Mdocdate: March 31 2013 $ +.Dd $Mdocdate: April 1 2013 $ .Dt MKFIFO 2 .Os .Sh NAME @@ -38,11 +38,11 @@ .Nm mkfifoat .Nd make a FIFO file .Sh SYNOPSIS -.Fd #include <sys/types.h> .Fd #include <sys/stat.h> -.Fd #include <fcntl.h> .Ft int .Fn mkfifo "const char *path" "mode_t mode" +.Fd #include <sys/stat.h> +.Fd #include <fcntl.h> .Ft int .Fn mkfifoat "int fd" "const char *path" "mode_t mode" .Sh DESCRIPTION |