xref: /minix3/minix/fs/mfs/glo.h (revision 7c48de6cc4c6d56f2277d378dba01dbac8a8c3b9)
1 #ifndef __MFS_GLO_H__
2 #define __MFS_GLO_H__
3 
4 /* EXTERN should be extern except for the table file */
5 #ifdef _TABLE
6 #undef EXTERN
7 #define EXTERN
8 #endif
9 
10 /* The following variables are used for returning results to the caller. */
11 EXTERN int err_code;		/* temporary storage for error number */
12 
13 EXTERN int cch[NR_INODES];
14 
15 EXTERN dev_t fs_dev;    	/* The device that is handled by this FS proc.
16 				 */
17 
18 EXTERN zone_t used_zones;
19 
20 extern struct fsdriver mfs_table;
21 
22 #endif
23