.\" man-code -- template to write code on man pages 
.\"
.\" $Id$
.\" Carlos Duarte, 980514
.\" 
.PP
.RS		\" indent ++ 
.nf		\" no text processment
.ft C 		\" courier font, or something close to fixed, if possible
struct stat
{
    dev_t         st_dev;      /* device */
    ino_t         st_ino;      /* inode */
    umode_t       st_mode;     /* protection */
    nlink_t       st_nlink;    /* number of hard links */
    uid_t         st_uid;      /* user $Id$ of owner */
    gid_t         st_gid;      /* group $Id$ of owner */
    dev_t         st_rdev;     /* device type (if inode device) */
    off_t         st_size;     /* total size, in bytes */
    unsigned long st_blksize;  /* blocksize for filesystem I/O */
    unsigned long st_blocks;   /* number of blocks allocated */
    time_t        st_atime;    /* time of last access */
    time_t        st_mtime;    /* time of last modification */
    time_t        st_ctime;    /* time of last change */
};
.ft R 		\" restore font
.fi		\" restore filling
.RE		\" restore previous indent
