VM: make mapping types explicit
[minix.git] / usr.sbin / mkfs.mfs / mfsdir.h
blobea4c71cd327e74777e40b4a81a216936588fd00a
1 #ifndef _MFSDIR_H
2 #define _MFSDIR_H
4 /* Maximum Minix MFS on-disk directory filename.
5 * MFS uses 'struct direct' to write and parse
6 * directory entries, so this can't be changed
7 * without breaking filesystems.
8 */
10 #define MFS_DIRSIZ 60
12 struct direct {
13 uint32_t mfs_d_ino;
14 char mfs_d_name[MFS_DIRSIZ];
15 #ifdef __NBSD_LIBC
16 } __packed;
17 #else
19 #endif
21 #endif /* _MFSDIR_H */