opendir change: refinement
[minix.git] / servers / vfs / fs.h
blob1256921311abcbcdc8fd485bf59fe312ffefcbc3
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 _POSIX_SOURCE 1 /* tell headers to include POSIX stuff */
8 #define _MINIX 1 /* tell headers to include MINIX stuff */
9 #define _SYSTEM 1 /* tell headers that this is the kernel */
11 /* The following are so basic, all the *.c files get them automatically. */
12 #include <minix/config.h> /* MUST be first */
13 #include <sys/types.h>
14 #include <minix/const.h>
15 #include <minix/type.h>
16 #include <minix/dmap.h>
17 #include <minix/ds.h>
18 #include <minix/rs.h>
20 #include <limits.h>
21 #include <errno.h>
22 #include <unistd.h>
24 #include <minix/syslib.h>
25 #include <minix/sysutil.h>
26 #include <minix/timers.h>
28 #include "const.h"
29 #include "dmap.h"
30 #include "proto.h"
31 #include "threads.h"
32 #include "glo.h"
33 #include "comm.h"
34 #include "vmnt.h"
36 #endif