xref: /minix/minix/servers/vfs/fs.h (revision 27852ebe)
1 #ifndef __VFS_FS_H__
2 #define __VFS_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 /* The following are so basic, all the *.c files get them automatically. */
10 #include <minix/config.h>	/* MUST be first */
11 
12 #include <sys/types.h>
13 
14 #include <machine/vmparam.h>
15 
16 #include <minix/const.h>
17 #include <minix/type.h>
18 #include <minix/dmap.h>
19 #include <minix/ds.h>
20 #include <minix/rs.h>
21 #include <minix/callnr.h>
22 
23 #include <limits.h>
24 #include <errno.h>
25 #include <unistd.h>
26 #include <string.h>
27 #include <fcntl.h>
28 #include <assert.h>
29 
30 #include <minix/syslib.h>
31 #include <minix/sysutil.h>
32 #include <minix/timers.h>
33 
34 #include "const.h"
35 #include "dmap.h"
36 #include "proto.h"
37 #include "threads.h"
38 #include "glo.h"
39 #include "type.h"
40 #include "vmnt.h"
41 #include "fproc.h"
42 
43 #endif
44