|
|
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 MNTTAB_H ! 13: #define MNTTAB_H 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
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.