custom message type for VM_INFO
[minix3.git] / lib / libpuffs / fs.h
blob15b07614408ff64ba1f52b71170d95e758765638
1 #ifndef LIBPUFFS_FS_H
2 #define LIBPUFFS_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/cdefs.h>
14 #include <sys/types.h>
15 #include <minix/const.h>
16 #include <minix/type.h>
17 #include <minix/dmap.h>
19 #include <lib.h>
20 #include <limits.h>
21 #include <errno.h>
23 #include <minix/syslib.h>
24 #include <minix/sysutil.h>
26 #include "proto.h"
27 #include "glo.h"
29 #endif /* LIBPUFFS_FS_H */