glo.h 470 B

1234567891011121314151617181920212223
  1. #ifndef __MFS_GLO_H__
  2. #define __MFS_GLO_H__
  3. /* EXTERN should be extern except for the table file */
  4. #ifdef _TABLE
  5. #undef EXTERN
  6. #define EXTERN
  7. #endif
  8. /* The following variables are used for returning results to the caller. */
  9. EXTERN int err_code; /* temporary storage for error number */
  10. EXTERN int cch[NR_INODES];
  11. EXTERN dev_t fs_dev; /* The device that is handled by this FS proc.
  12. */
  13. EXTERN zone_t used_zones;
  14. extern struct fsdriver mfs_table;
  15. #endif