xref: /minix/minix/lib/libsffs/inc.h (revision 7f5f010b)
1 #ifndef _SFFS_INC_H
2 #define _SFFS_INC_H
3 
4 #include <minix/drivers.h>
5 #include <minix/vfsif.h>
6 #include <minix/optset.h>
7 #include <minix/sffs.h>
8 #include <sys/stat.h>
9 #include <sys/queue.h>
10 #include <assert.h>
11 
12 #if DEBUG
13 #define dprintf(x) printf x
14 #else
15 #define dprintf(x)
16 #endif
17 
18 #include "type.h"
19 #include "const.h"
20 #include "proto.h"
21 #include "glo.h"
22 #include "inode.h"
23 
24 #endif /* _SFFS_INC_H */
25