1433d6423SLionel Sambuc #ifndef __VFS_FS_H__ 2433d6423SLionel Sambuc #define __VFS_FS_H__ 3433d6423SLionel Sambuc 4433d6423SLionel Sambuc /* This is the master header for fs. It includes some other files 5433d6423SLionel Sambuc * and defines the principal constants. 6433d6423SLionel Sambuc */ 7433d6423SLionel Sambuc #define _SYSTEM 1 /* tell headers that this is the kernel */ 8433d6423SLionel Sambuc 9433d6423SLionel Sambuc /* The following are so basic, all the *.c files get them automatically. */ 10433d6423SLionel Sambuc #include <minix/config.h> /* MUST be first */ 11433d6423SLionel Sambuc 12433d6423SLionel Sambuc #include <sys/types.h> 13433d6423SLionel Sambuc 14433d6423SLionel Sambuc #include <machine/vmparam.h> 15433d6423SLionel Sambuc 16433d6423SLionel Sambuc #include <minix/const.h> 17433d6423SLionel Sambuc #include <minix/type.h> 18433d6423SLionel Sambuc #include <minix/dmap.h> 19433d6423SLionel Sambuc #include <minix/ds.h> 20433d6423SLionel Sambuc #include <minix/rs.h> 21*e3b8d4bbSDavid van Moolenbroek #include <minix/callnr.h> 22433d6423SLionel Sambuc 23433d6423SLionel Sambuc #include <limits.h> 24433d6423SLionel Sambuc #include <errno.h> 25433d6423SLionel Sambuc #include <unistd.h> 26*e3b8d4bbSDavid van Moolenbroek #include <string.h> 27*e3b8d4bbSDavid van Moolenbroek #include <fcntl.h> 28*e3b8d4bbSDavid van Moolenbroek #include <assert.h> 29433d6423SLionel Sambuc 30433d6423SLionel Sambuc #include <minix/syslib.h> 31433d6423SLionel Sambuc #include <minix/sysutil.h> 32433d6423SLionel Sambuc #include <minix/timers.h> 33433d6423SLionel Sambuc 34433d6423SLionel Sambuc #include "const.h" 35433d6423SLionel Sambuc #include "dmap.h" 36433d6423SLionel Sambuc #include "proto.h" 37433d6423SLionel Sambuc #include "threads.h" 38433d6423SLionel Sambuc #include "glo.h" 39433d6423SLionel Sambuc #include "type.h" 40433d6423SLionel Sambuc #include "vmnt.h" 41433d6423SLionel Sambuc #include "fproc.h" 42433d6423SLionel Sambuc 43433d6423SLionel Sambuc #endif 44