Drop main() prototype. Syncs with NetBSD-8
[minix.git] / minix / fs / ext2 / fs.h
bloba97b1928584caa56c33b543bc39463492be37b7d
1 #ifndef EXT2_FS_H
2 #define EXT2_FS_H
4 /* This is the master header for fs. It includes some other files
5 * and defines the principal constants.
6 */
7 #define _SYSTEM 1 /* tell headers that this is the kernel */
9 #define VERBOSE 0 /* show messages during initialization? */
11 /* The following are so basic, all the *.c files get them automatically. */
12 #include <minix/config.h> /* MUST be first */
13 #include <sys/types.h>
14 #include <minix/const.h>
15 #include <minix/type.h>
17 #include <lib.h>
18 #include <limits.h>
19 #include <errno.h>
20 #include <assert.h>
22 #include <minix/syslib.h>
23 #include <minix/sysutil.h>
25 #include <minix/fsdriver.h>
27 #include "const.h"
28 #include "type.h"
29 #include "proto.h"
30 #include "glo.h"
32 #define ext2_debug printf
34 #endif /* EXT2_FS_H */