tools/llvm: Do not build with symbols
[minix3.git] / minix / fs / pfs / glo.h
blob96ca9c42eab0090c43b47e6c9d863a3fbc9115d0
1 #ifndef __PFS_GLO_H__
2 #define __PFS_GLO_H__
4 /* EXTERN should be extern except for the table file */
5 #ifdef _TABLE
6 #undef EXTERN
7 #define EXTERN
8 #endif
10 #include <minix/vfsif.h>
12 /* The following variables are used for returning results to the caller. */
13 EXTERN int err_code; /* temporary storage for error number */
15 EXTERN int(*fs_call_vec[]) (message *fs_m_in, message *fs_m_out);
17 EXTERN int exitsignaled;
18 EXTERN int busy;
19 EXTERN int unmountdone;
21 /* Inode map. */
22 EXTERN bitchunk_t inodemap[FS_BITMAP_CHUNKS(PFS_NR_INODES)];
24 #endif