diff options
author | obrien <obrien@FreeBSD.org> | 1997-01-27 19:20:05 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1997-01-27 19:20:05 +0000 |
commit | 1627d472cb8e0b1084672942e6bc0fc952e7d209 (patch) | |
tree | cbc4e9a5671b6e40f187218d284592509558469d | |
parent | d1ce1fab91b241f0bb4239e6967f12b31bbca7d9 (diff) | |
download | FreeBSD-src-1627d472cb8e0b1084672942e6bc0fc952e7d209.zip FreeBSD-src-1627d472cb8e0b1084672942e6bc0fc952e7d209.tar.gz |
I was porting something from sysV world and found our cross references
not quite as good as I would expect. So I'm introducing mknod to mkfifo,
and vice-versa.
-rw-r--r-- | lib/libc/sys/mkfifo.2 | 1 | ||||
-rw-r--r-- | lib/libc/sys/mknod.2 | 1 | ||||
-rw-r--r-- | sbin/mknod/mknod.8 | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/lib/libc/sys/mkfifo.2 b/lib/libc/sys/mkfifo.2 index 443807a..b39bf9c 100644 --- a/lib/libc/sys/mkfifo.2 +++ b/lib/libc/sys/mkfifo.2 @@ -113,6 +113,7 @@ points outside the process's allocated address space. .El .Sh SEE ALSO .Xr chmod 2 , +.Xr mknod 2, .Xr stat 2 , .Xr umask 2 .Sh STANDARDS diff --git a/lib/libc/sys/mknod.2 b/lib/libc/sys/mknod.2 index 92ac52e..2db4f45 100644 --- a/lib/libc/sys/mknod.2 +++ b/lib/libc/sys/mknod.2 @@ -117,6 +117,7 @@ points outside the process's allocated address space. .El .Sh SEE ALSO .Xr chmod 2 , +.Xr mkfifo 2 , .Xr stat 2 , .Xr umask 2 .Sh HISTORY diff --git a/sbin/mknod/mknod.8 b/sbin/mknod/mknod.8 index b825e7c..ebcc86f 100644 --- a/sbin/mknod/mknod.8 +++ b/sbin/mknod/mknod.8 @@ -99,6 +99,7 @@ indicates a hexadecimal number, and a leading .Ql 0 will cause the number to be interpreted as octal. .Sh SEE ALSO +.Xr mkfifo 1 , .Xr mknod 2 , .Xr MAKEDEV 8 .Sh HISTORY |