summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/libc/sys/stat.210
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libc/sys/stat.2 b/lib/libc/sys/stat.2
index dfab0110498..79ecf5d8e16 100644
--- a/lib/libc/sys/stat.2
+++ b/lib/libc/sys/stat.2
@@ -1,4 +1,4 @@
-.\" $OpenBSD: stat.2,v 1.20 2006/10/05 05:05:57 ray Exp $
+.\" $OpenBSD: stat.2,v 1.21 2006/10/05 07:08:18 jmc Exp $
.\"
.\" Copyright (c) 1980, 1991, 1993, 1994
.\" The Regents of the University of California. All rights reserved.
@@ -158,7 +158,7 @@ be zero.
The status information word
.Fa st_mode
has the following bits:
-.Bd -literal
+.Bd -literal -offset indent
#define S_IFMT 0170000 /* type of file */
#define S_IFIFO 0010000 /* named pipe (fifo) */
#define S_IFCHR 0020000 /* character special */
@@ -182,10 +182,10 @@ otherwise, 0 is returned.
S_ISBLK(st_mode m) /* block special */
S_ISCHR(st_mode m) /* char special */
S_ISDIR(st_mode m) /* directory */
-S_ISFIFO(st_mode m) /* fifo */
+S_ISFIFO(st_mode m) /* fifo */
S_ISLNK(st_mode m) /* symbolic link */
-S_ISREG(st_mode m) /* regular file */
-S_ISSOCK(st_mode m) /* socket */
+S_ISREG(st_mode m) /* regular file */
+S_ISSOCK(st_mode m) /* socket */
.Ed
.Pp
For a list of access modes, see