| Rev | Line | |
|---|
| [9] | 1 | /* This is the master header for fs. It includes some other files
|
|---|
| 2 | * and defines the principal constants.
|
|---|
| 3 | */
|
|---|
| 4 | #define _POSIX_SOURCE 1 /* tell headers to include POSIX stuff */
|
|---|
| 5 | #define _MINIX 1 /* tell headers to include MINIX stuff */
|
|---|
| 6 | #define _SYSTEM 1 /* tell headers that this is the kernel */
|
|---|
| 7 |
|
|---|
| 8 | #define VERBOSE 0 /* show messages during initialization? */
|
|---|
| 9 |
|
|---|
| 10 | /* The following are so basic, all the *.c files get them automatically. */
|
|---|
| 11 | #include <minix/config.h> /* MUST be first */
|
|---|
| 12 | #include <ansi.h> /* MUST be second */
|
|---|
| 13 | #include <sys/types.h>
|
|---|
| 14 | #include <minix/const.h>
|
|---|
| 15 | #include <minix/type.h>
|
|---|
| 16 | #include <minix/dmap.h>
|
|---|
| 17 |
|
|---|
| 18 | #include <limits.h>
|
|---|
| 19 | #include <errno.h>
|
|---|
| 20 |
|
|---|
| 21 | #include <minix/syslib.h>
|
|---|
| 22 | #include <minix/sysutil.h>
|
|---|
| 23 |
|
|---|
| 24 | #include "const.h"
|
|---|
| 25 | #include "type.h"
|
|---|
| 26 | #include "proto.h"
|
|---|
| 27 | #include "glo.h"
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.