xref: /minix/minix/lib/libpuffs/fs.h (revision ebfedea0)
1 #ifndef LIBPUFFS_FS_H
2 #define LIBPUFFS_FS_H
3 
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 */
8 
9 #define VERBOSE		0	/* show messages during initialization? */
10 
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 
18 #include <lib.h>
19 #include <limits.h>
20 #include <errno.h>
21 
22 #include <minix/syslib.h>
23 #include <minix/sysutil.h>
24 
25 #include <minix/fsdriver.h>
26 
27 #include <stdlib.h>
28 #include <string.h>
29 #include <assert.h>
30 
31 #include "puffs.h"
32 #include "puffs_priv.h"
33 
34 #include "const.h"
35 #include "proto.h"
36 #include "glo.h"
37 
38 #endif /* LIBPUFFS_FS_H */
39