Fixed extern declaration from pointer to array
[minix.git] / servers / pfs / glo.h
blob2023310253206422e53ca6678552ec19349bc3b9
1 /* EXTERN should be extern except for the table file */
2 #ifdef _TABLE
3 #undef EXTERN
4 #define EXTERN
5 #endif
7 #include <minix/vfsif.h>
9 /* The following variables are used for returning results to the caller. */
10 EXTERN int err_code; /* temporary storage for error number */
12 EXTERN int cch[NR_INODES];
14 extern _PROTOTYPE (int (*fs_call_vec[]), (void) ); /* fs call table */
16 EXTERN message fs_m_in;
17 EXTERN message fs_m_out;
19 EXTERN uid_t caller_uid;
20 EXTERN gid_t caller_gid;
21 EXTERN int req_nr;
22 EXTERN int SELF_E;
23 EXTERN int exitsignaled;
24 EXTERN int busy;
26 /* Inode map. */
27 EXTERN bitchunk_t inodemap[FS_BITMAP_CHUNKS(NR_INODES)];