repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
make includes fix from trunk
[minix.git]
/
include
/
minix
/
dir.h
blob
9c0a7dd5a599ba3da44171b666d8e7d148d7800e
1
/* The <dir.h> header gives the layout of a directory. */
2
3
#ifndef _DIR_H
4
#define _DIR_H
5
6
#include <minix/types.h>
7
8
#define DIRBLKSIZ 512
/* size of directory block */
9
10
#ifndef DIRSIZ
11
#define DIRSIZ 60
12
#endif
13
14
struct
direct
{
15
ino_t d_ino
;
16
char
d_name
[
DIRSIZ
];
17
};
18
19
#endif
/* _DIR_H */