Sync with cat.c from netbsd-8
[minix3.git] / minix / servers / vfs / fs.h
blobbfe5d0f36e11faae6645a23918e250b09a8889e7
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>
21 #include <minix/callnr.h>
23 #include <limits.h>
24 #include <errno.h>
25 #include <unistd.h>
26 #include <string.h>
27 #include <fcntl.h>
28 #include <assert.h>
30 #include <minix/syslib.h>
31 #include <minix/sysutil.h>
32 #include <minix/timers.h>
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"
43 #endif