summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux-4.02/core/fs/nonextextent.c
blob: 0c1ce2cecaf58f2dfd5189c082dd09083b568687 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "fs.h"

/*
 * Use this routine for the next_extent() pointer when we never should
 * be calling next_extent(), e.g. iso9660.
 */
int no_next_extent(struct inode *inode, uint32_t lstart)
{
    (void)inode;
    (void)lstart;

    return -1;
}