|
|
1.1 root 1: /* (-lgl
2: * COHERENT 386 Device Driver Kit release 2.0
3: * Copyright (c) 1982, 1992 by Mark Williams Company.
4: * All rights reserved. May not be copied without permission.
5: -lgl) */
6:
7: /*
8: * /usr/include/mnttab.h
9: * "/etc/mount" and "/etc/umount" maintain the mount table "/etc/mnttab",
10: * which is an array of these structures.
11: */
12:
13: #ifndef __MNTTAB_H__
14: #define __MNTTAB_H__
15:
16: #include <sys/types.h>
17:
18: #define MNTNSIZ 32 /* Size of a mount filename */
19:
20: struct mnttab {
21: char mt_dev[MNTNSIZ]; /* Directory */
22: char mt_filsys[MNTNSIZ]; /* Special file */
23: int mt_ro_flg; /* Read only flag */
24: time_t mt_time; /* Time mounted */
25: };
26:
27: #endif
28:
29: /* 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.