VM: simplify slab allocator
[minix.git] / servers / mfs / fs.h
blobcaa2291b4e300c074b779009a3795547e7964a02
1 #ifndef __MFS_FS_H__
2 #define __MFS_FS_H__
4 /* This is the master header for fs. It includes some other files
5 * and defines the principal constants.
6 */
7 #define _POSIX_SOURCE 1 /* tell headers to include POSIX stuff */
8 #define _MINIX 1 /* tell headers to include MINIX stuff */
9 #define _SYSTEM 1 /* tell headers that this is the kernel */
11 #define VERBOSE 0 /* show messages during initialization? */
13 /* The following are so basic, all the *.c files get them automatically. */
14 #include <minix/config.h> /* MUST be first */
15 #include <sys/types.h>
16 #include <minix/const.h>
17 #include <minix/type.h>
18 #include <minix/dmap.h>
20 #include <limits.h>
21 #include <errno.h>
23 #include <minix/syslib.h>
24 #include <minix/sysutil.h>
26 #include "mfsdir.h"
27 #include "const.h"
28 #include "type.h"
29 #include "proto.h"
30 #include "glo.h"
32 #endif