fs.h 717 B

12345678910111213141516171819202122232425262728293031323334
  1. #ifndef __MFS_FS_H__
  2. #define __MFS_FS_H__
  3. /* This is the master header for fs. It includes some other files
  4. * and defines the principal constants.
  5. */
  6. #define _SYSTEM 1 /* tell headers that this is the kernel */
  7. #define VERBOSE 0 /* show messages during initialization? */
  8. /* The following are so basic, all the *.c files get them automatically. */
  9. #include <minix/config.h> /* MUST be first */
  10. #include <sys/types.h>
  11. #include <minix/const.h>
  12. #include <minix/type.h>
  13. #include <lib.h>
  14. #include <limits.h>
  15. #include <errno.h>
  16. #include <minix/syslib.h>
  17. #include <minix/sysutil.h>
  18. #include <minix/fsdriver.h>
  19. #include "mfsdir.h"
  20. #include "const.h"
  21. #include "type.h"
  22. #include "proto.h"
  23. #include "glo.h"
  24. #endif