aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/sys/mount.2
diff options
context:
space:
mode:
authorMike Pritchard <mpp@FreeBSD.org>1996-08-22 23:31:07 +0000
committerMike Pritchard <mpp@FreeBSD.org>1996-08-22 23:31:07 +0000
commit7bdf80e5714a8b59a2bfda90f367be4612df033e (patch)
tree748859d8821f0dc6e8312554558994563f756b27 /lib/libc/sys/mount.2
parentf0abcb4154dc21dd382e948d5033a4bed2a04673 (diff)
downloadsrc-7bdf80e5714a8b59a2bfda90f367be4612df033e.tar.gz
src-7bdf80e5714a8b59a2bfda90f367be4612df033e.zip
Correctly use .Fn instead of .Nm to reference function names
in a bunch of man pages. Use the correct .Bx (BSD UNIX) or .At (AT&T UNIX) macros instead of explicitly specifying the version in the text in a bunch of man pages.
Notes
Notes: svn path=/head/; revision=17782
Diffstat (limited to 'lib/libc/sys/mount.2')
-rw-r--r--lib/libc/sys/mount.218
1 files changed, 11 insertions, 7 deletions
diff --git a/lib/libc/sys/mount.2 b/lib/libc/sys/mount.2
index 6829a3e666b9..03879e1cd65a 100644
--- a/lib/libc/sys/mount.2
+++ b/lib/libc/sys/mount.2
@@ -165,14 +165,16 @@ and the variable
.Va errno
is set to indicate the error.
.Pp
-.Nm Umount
-returns the value 0 if the umount succeeded; otherwise -1 is returned
+The
+.Fn umount
+function returns the value 0 if the umount succeeded; otherwise -1 is returned
and the variable
.Va errno
is set to indicate the error.
.Sh ERRORS
-.Fn Mount
-will fail when one of the following occurs:
+The
+.Fn mount
+function will fail when one of the following occurs:
.Bl -tag -width [ENOTBLK]
.It Bq Er EPERM
The caller is not the super-user.
@@ -269,8 +271,9 @@ cylinder group information.
points outside the process's allocated address space.
.El
.Pp
-.Nm Umount
-may fail with one of the following errors:
+The
+.Fn umount
+function may fail with one of the following errors:
.Bl -tag -width [ENOTBLK]
.It Bq Er EPERM
The caller is not the super-user.
@@ -311,4 +314,5 @@ Some of the error codes need translation to more obvious messages.
.Fn Mount
and
.Fn umount
-function calls appeared in Version 6 AT&T UNIX.
+function calls appeared in
+.At v6 .