repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
tools/llvm: Do not build with symbols
[minix3.git]
/
minix
/
usr.sbin
/
mkfs.mfs
/
v1l
/
mfsdir.h
blob
5ccd39f62e57bf0d32e552b71c1c00f505d47780
1
#ifndef _MKFS_MFSDIR_H
2
#define _MKFS_MFSDIR_H
3
4
/* Linux-extended Minix MFS V1/V2 on-disk directory entry. */
5
#define MFS_DIRSIZ 30
6
7
struct
direct
{
8
uint16_t
d_ino
;
9
char
d_name
[
MFS_DIRSIZ
];
10
}
__packed
;
11
12
#endif
/* _MKFS_MFSDIR_H */