source:
bootcd/isolinux/syslinux-6.03/core/fs/nonextextent.c
Last change on this file was e16e8f2, checked in by , 3 years ago | |
---|---|
|
|
File size: 250 bytes |
Line | |
---|---|
1 | #include "fs.h" |
2 | |
3 | /* |
4 | * Use this routine for the next_extent() pointer when we never should |
5 | * be calling next_extent(), e.g. iso9660. |
6 | */ |
7 | int no_next_extent(struct inode *inode, uint32_t lstart) |
8 | { |
9 | (void)inode; |
10 | (void)lstart; |
11 | |
12 | return -1; |
13 | } |
Note: See TracBrowser
for help on using the repository browser.