|
|
1.1 root 1: /* (-lgl
2: * COHERENT Version 3.0
3: * Copyright (c) 1982, 1990 by Mark Williams Company.
4: * All rights reserved. May not be copied without permission.
5: -lgl) */
6: /*
7: * Structure for the mount table maintained by
8: * `/etc/mount' and `/etc/umount'.
9: * The file `/etc/mtab' is an array of these structures.
10: */
11:
12: #ifndef MTAB_H
13: #define MTAB_H MTAB_H
14:
15: #define MNAMSIZ 32 /* Size of a mount filename */
16:
17: struct mtab {
18: char mt_name[MNAMSIZ];
19: char mt_special[MNAMSIZ];
20: int mt_flags;
21: };
22:
23: #endif
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.