Minor changes

This commit is contained in:
Michael Kerrisk 2006-04-06 05:19:00 +00:00
parent e7b0c1f1d7
commit 97c0488f3e
3 changed files with 9 additions and 3 deletions

View File

@ -25,7 +25,7 @@
.\"
.TH MKDIRAT 2 2006-04-06 "Linux 2.6.16" "Linux Programmer's Manual"
.SH NAME
mkdirat \- create a directory at a relative location
mkdirat \- create a directory relative to a directory file descriptor
.SH SYNOPSIS
.nf
.B #include <sys/stat.h>
@ -86,6 +86,8 @@ The following additional errors can occur for
is not a valid file descriptor.
.TP
.B ENOTDIR
.I pathname
is a relative path and
.I dirfd
is a file descriptor referring to a file other than a directory.
.SH NOTES

View File

@ -25,7 +25,7 @@
.\"
.TH MKNODAT 2 2006-04-06 "Linux 2.6.16" "Linux Programmer's Manual"
.SH NAME
mknodat \- create a special or ordinary file at a relative location
mknodat \- create a special or ordinary file relative to a directory file descriptor
.SH SYNOPSIS
.nf
.B #include <sys/stat.h>
@ -87,6 +87,8 @@ The following additional errors can occur for
is not a valid file descriptor.
.TP
.B ENOTDIR
.I pathname
is a relative path and
.I dirfd
is a file descriptor referring to a file other than a directory.
.SH NOTES

View File

@ -25,7 +25,7 @@
.\"
.TH OPENAT 2 2006-03-06 "Linux 2.6.16" "Linux Programmer's Manual"
.SH NAME
openat \- open a file at a relative location
openat \- open a file relative to a directory file descriptor
.SH SYNOPSIS
.nf
.B #include <fcntl.h>
@ -88,6 +88,8 @@ The following additional errors can occur for
is not a valid file descriptor.
.TP
.B ENOTDIR
.I pathname
is a relative path and
.I dirfd
is a file descriptor referring to a file other than a directory.
.SH NOTES