1 /* This is the master header for fs. It includes some other files
2 * and defines the principal constants.
8 #define _POSIX_SOURCE 1 /* tell headers to include POSIX stuff */
9 #define _MINIX 1 /* tell headers to include MINIX stuff */
10 #define _SYSTEM 1 /* tell headers that this is the kernel */
12 #define VERBOSE 0 /* show messages during initialization? */
14 /* The following are so basic, all the *.c files get them automatically. */
15 #include <minix/config.h> /* MUST be first */
16 #include <sys/types.h>
17 #include <minix/const.h>
18 #include <minix/type.h>
19 #include <minix/dmap.h>
24 #include <minix/syslib.h>
25 #include <minix/sysutil.h>
32 #define ext2_debug printf
34 #endif /* EXT2_FS_H */