tools/llvm: Do not build with symbols
[minix3.git] / minix / servers / vfs / fs.h
blob500d2ed3353caf10bc9b72db8c9a9890e3159d7c
1 #ifndef __VFS_FS_H__
2 #define __VFS_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 /* The following are so basic, all the *.c files get them automatically. */
10 #include <minix/config.h> /* MUST be first */
12 #include <sys/types.h>
14 #include <machine/vmparam.h>
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>
22 #include <limits.h>
23 #include <errno.h>
24 #include <unistd.h>
26 #include <minix/syslib.h>
27 #include <minix/sysutil.h>
28 #include <minix/timers.h>
30 #include "const.h"
31 #include "dmap.h"
32 #include "proto.h"
33 #include "threads.h"
34 #include "glo.h"
35 #include "type.h"
36 #include "vmnt.h"
37 #include "fproc.h"
39 #endif