xref: /minix3/minix/fs/mfs/glo.h (revision 1311233cfbe0c8d7c7a17bdf5274fbcdd76d7702)
1433d6423SLionel Sambuc #ifndef __MFS_GLO_H__
2433d6423SLionel Sambuc #define __MFS_GLO_H__
3433d6423SLionel Sambuc 
4433d6423SLionel Sambuc /* EXTERN should be extern except for the table file */
5433d6423SLionel Sambuc #ifdef _TABLE
6433d6423SLionel Sambuc #undef EXTERN
7433d6423SLionel Sambuc #define EXTERN
8433d6423SLionel Sambuc #endif
9433d6423SLionel Sambuc 
10433d6423SLionel Sambuc /* The following variables are used for returning results to the caller. */
11433d6423SLionel Sambuc EXTERN int err_code;		/* temporary storage for error number */
12433d6423SLionel Sambuc 
13433d6423SLionel Sambuc EXTERN int cch[NR_INODES];
14433d6423SLionel Sambuc 
15433d6423SLionel Sambuc EXTERN dev_t fs_dev;    	/* The device that is handled by this FS proc.
16433d6423SLionel Sambuc 				 */
17ccaeedb2SDavid van Moolenbroek 
18*1311233cSDavid van Moolenbroek EXTERN zone_t used_zones;
19*1311233cSDavid van Moolenbroek 
20ccaeedb2SDavid van Moolenbroek extern struct fsdriver mfs_table;
21433d6423SLionel Sambuc 
22433d6423SLionel Sambuc #endif
23