00001 /* This is the master header for fs. It includes some other files 00002 * and defines the principal constants. 00003 */ 00004 #define _POSIX_SOURCE 1 /* tell headers to include POSIX stuff */ 00005 #define _MINIX 1 /* tell headers to include MINIX stuff */ 00006 #define _SYSTEM 1 /* tell headers that this is the kernel */ 00007 00008 #define VERBOSE 0 /* show messages during initialization? */ 00009 00010 /* The following are so basic, all the *.c files get them automatically. */ 00011 #include <minix/config.h> /* MUST be first */ 00012 #include <ansi.h> /* MUST be second */ 00013 #include <sys/types.h> 00014 #include <minix/const.h> 00015 #include <minix/type.h> 00016 #include <minix/dmap.h> 00017 00018 #include <limits.h> 00019 #include <errno.h> 00020 00021 #include <minix/syslib.h> 00022 #include <minix/sysutil.h> 00023 00024 #include "const.h" 00025 #include "type.h" 00026 #include "proto.h" 00027 #include "glo.h"
1.4.6