add opendir alias
[minix.git] / lib / libpuffs / fs.h
blob7c711d124fc69668d94a089ccbf41c4f66ab8db9
1 /* This is the master header for fs. It includes some other files
2 * and defines the principal constants.
3 */
5 #ifndef LIBPUFFS_FS_H
6 #define LIBPUFFS_FS_H
8 #define _POSIX_SOURCE 1 /* tell headers to include POSIX stuff */
9 #define _MINIX 1 /* tell headers to include MINIX stuff */
10 #define _SYSTEM 1 /* tell headers that this is the kernel */
12 #define VERBOSE 0 /* show messages during initialization? */
14 /* The following are so basic, all the *.c files get them automatically. */
15 #include <minix/config.h> /* MUST be first */
16 #include <sys/cdefs.h>
17 #include <sys/types.h>
18 #include <minix/const.h>
19 #include <minix/type.h>
20 #include <minix/dmap.h>
22 #include <limits.h>
23 #include <errno.h>
25 #include <minix/syslib.h>
26 #include <minix/sysutil.h>
28 #include "proto.h"
29 #include "glo.h"
31 #endif /* LIBPUFFS_FS_H */