Files
Arquivotheca.SunOS-4.1.4/include/mtab.h
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

17 lines
307 B
C

/* @(#)mtab.h 1.1 94/10/31 SMI; from UCB 4.4 83/05/28 */
/*
* Mounted device accounting file.
*/
#ifndef _mtab_h
#define _mtab_h
struct mtab {
char m_path[32]; /* mounted on pathname */
char m_dname[32]; /* block device pathname */
char m_type[4]; /* read-only, quotas */
};
#endif /*!_mtab_h*/