blob: 01e667582ea0415e52dc11b9076ea8bbf7252345 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* EXTERN should be extern except for the table file */
#ifdef _TABLE
#undef EXTERN
#define EXTERN
#endif
EXTERN dev_t fs_dev; /* the device that is handled by this FS proc */
EXTERN struct opt opt; /* global mount options */
extern struct fsdriver isofs_table; /* function call table */
|