tools/llvm: Do not build with symbols
[minix3.git] / minix / fs / pfs / fs.h
bloba5e0ca40ff7b76deef219326f32ed730c1db68ce
1 #ifndef __PFS_FS_H__
2 #define __PFS_FS_H__
4 /* This is the master header for fs. It includes some other files
5 * and defines the principal constants.
6 */
7 #define _SYSTEM 1 /* tell headers that this is the kernel */
9 /* The following are so basic, all the *.c files get them automatically. */
10 #include <minix/config.h> /* MUST be first */
11 #include <sys/types.h>
12 #include <minix/const.h>
13 #include <minix/type.h>
14 #include <minix/dmap.h>
16 #include <minix/vfsif.h>
17 #include <lib.h>
18 #include <limits.h>
19 #include <errno.h>
20 #include <minix/syslib.h>
21 #include <unistd.h>
22 #include <stdlib.h>
23 #include <stdio.h>
24 #include <minix/sysutil.h>
26 #include "const.h"
27 #include "proto.h"
28 #include "glo.h"
30 #endif