Drop main() prototype. Syncs with NetBSD-8
[minix.git] / minix / fs / mfs / type.h
blobfaaef9d92bb05317ce5fedf85c00762a860d058f
1 #ifndef __MFS_TYPE_H__
2 #define __MFS_TYPE_H__
4 #include <minix/libminixfs.h>
6 /* Declaration of the V2 inode as it is on the disk (not in core). */
7 typedef struct { /* V2.x disk inode */
8 u16_t d2_mode; /* file type, protection, etc. */
9 u16_t d2_nlinks; /* how many links to this file. HACK! */
10 i16_t d2_uid; /* user id of the file's owner. */
11 u16_t d2_gid; /* group number HACK! */
12 i32_t d2_size; /* current file size in bytes */
13 i32_t d2_atime; /* when was file data last accessed */
14 i32_t d2_mtime; /* when was file data last changed */
15 i32_t d2_ctime; /* when was inode data last changed */
16 zone_t d2_zone[V2_NR_TZONES]; /* block nums for direct, ind, and dbl ind */
17 } d2_inode;
19 #endif