1 #ifndef _LIBMINIXFS_INC_H 2 #define _LIBMINIXFS_INC_H 3 4 int lmfs_get_partial_block(struct buf **bpp, dev_t dev, block64_t block, 5 int how, size_t block_size); 6 void lmfs_readahead(dev_t dev, block64_t base_block, unsigned int nblocks, 7 size_t last_size); 8 unsigned int lmfs_readahead_limit(void); 9 10 #endif /* !_LIBMINIXFS_INC_H */ 11