|
|
1.1 root 1: /* (-lgl
2: * COHERENT Version 4.1
3: * Copyright (c) 1982, 1992 by Mark Williams Company.
4: * All rights reserved. May not be copied without permission.
5: -lgl) */
6: /*
7: * /usr/include/mnttab.h
8: * "/etc/mount" and "/etc/umount" maintain the mount table "/etc/mnttab",
9: * which is an array of these structures.
10: */
11:
12: #ifndef _MNTTAB_H
13: #define _MNTTAB_H
14:
15: #include <sys/types.h>
16:
17: #define MNTNSIZ 32 /* Size of a mount filename */
18:
19: struct mnttab {
20: char mt_dev[MNTNSIZ]; /* Directory */
21: char mt_filsys[MNTNSIZ]; /* Special file */
22: int mt_ro_flg; /* Read only flag */
23: time_t mt_time; /* Time mounted */
24: };
25:
26: #endif
27:
28: /* end of /usr/include/mnttab.h */
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.