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
/
v1
/
mfsdir.h
blob
ce9a3997d7804888633826e3a0f2b4aec4ff4acd
1
#ifndef _MKFS_MFSDIR_H
2
#define _MKFS_MFSDIR_H
3
4
/* Minix MFS V1/V2 on-disk directory filename. */
5
#define MFS_DIRSIZ 14
6
7
struct
direct
{
8
uint16_t
d_ino
;
9
char
d_name
[
MFS_DIRSIZ
];
10
}
__packed
;
11
12
#endif
/* _MKFS_MFSDIR_H */