make includes fix from trunk
[minix.git] / include / minix / dir.h
blob9c0a7dd5a599ba3da44171b666d8e7d148d7800e
1 /* The <dir.h> header gives the layout of a directory. */
3 #ifndef _DIR_H
4 #define _DIR_H
6 #include <minix/types.h>
8 #define DIRBLKSIZ 512 /* size of directory block */
10 #ifndef DIRSIZ
11 #define DIRSIZ 60
12 #endif
14 struct direct {
15 ino_t d_ino;
16 char d_name[DIRSIZ];
19 #endif /* _DIR_H */