aboutsummaryrefslogtreecommitdiffstats
path: root/man2/stat.2
diff options
context:
space:
mode:
Diffstat (limited to 'man2/stat.2')
-rw-r--r--man2/stat.210
1 files changed, 5 insertions, 5 deletions
diff --git a/man2/stat.2 b/man2/stat.2
index 63ee87c7e1..42b713617a 100644
--- a/man2/stat.2
+++ b/man2/stat.2
@@ -96,7 +96,7 @@ All of these system calls return a
.I stat
structure, which contains the following fields:
.PP
-.RS 4
+.in +4n
.nf
struct stat {
dev_t st_dev; /* ID of device containing file */
@@ -114,7 +114,7 @@ struct stat {
time_t st_ctime; /* time of last status change */
};
.fi
-.RE
+.in
.PP
The
.I st_dev
@@ -194,7 +194,7 @@ is changed by writing or by setting inode information
The following POSIX macros are defined to check the file type using the
.I st_mode
field:
-.RS
+.RS 4
.TP 1.2i
.BR S_ISREG (m)
is it a regular file?
@@ -221,7 +221,7 @@ socket? (Not in POSIX.1-1996.)
The following flags are defined for the
.I st_mode
field:
-.RS 4
+.in +4n
.TS
lB l l.
S_IFMT 0170000 bit mask for the file type bit fields
@@ -248,7 +248,7 @@ S_IROTH 00004 others have read permission
S_IWOTH 00002 others have write permission
S_IXOTH 00001 others have execute permission
.TE
-.RE
+.in
.P
The set-group-ID bit
.RB ( S_ISGID )