diff --git a/man3/getfsent.3 b/man3/getfsent.3 index 9d429bac5..1a11006c7 100644 --- a/man3/getfsent.3 +++ b/man3/getfsent.3 @@ -40,19 +40,22 @@ getfsent, getfsspec, getfsfile, setfsent, endfsent \- handle fstab entries .SH DESCRIPTION These functions read from the file .IR /etc/fstab . -The \fIstruct fstab\fP is defined by +The \fIstruct fstab\fP is defined by: .LP +.in +0.5i .nf struct fstab { - char *fs_spec; /* block device name */ - char *fs_file; /* mount point */ - char *fs_vfstype; /* filesystem type */ - char *fs_mntops; /* mount options */ - const char *fs_type; /* rw/rq/ro/sw/xx option */ - int fs_freq; /* dump frequency, in days */ - int fs_passno; /* pass number on parallel dump */ + char *fs_spec; /* block device name */ + char *fs_file; /* mount point */ + char *fs_vfstype; /* filesystem type */ + char *fs_mntops; /* mount options */ + const char *fs_type; /* rw/rq/ro/sw/xx option */ + int fs_freq; /* dump frequency, in days */ + int fs_passno; /* pass number on parallel dump */ }; .fi +.in +.PP Here the field .I fs_type contains (on a *BSD system) diff --git a/man3/glob.3 b/man3/glob.3 index ee895ea3a..e31538805 100644 --- a/man3/glob.3 +++ b/man3/glob.3 @@ -226,11 +226,13 @@ These will store their error code in .SH EXAMPLE One example of use is the following code, which simulates typing .sp -.B ls \-l *.c ../*.c +.in +4n +ls \-l *.c ../*.c +.in .sp in the shell: .nf -.in 10 +.in +4n glob_t globbuf;