diff options
Diffstat (limited to 'booster/src/booster_stat.c')
-rw-r--r-- | booster/src/booster_stat.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/booster/src/booster_stat.c b/booster/src/booster_stat.c index a16dab86a..10d2dc2e2 100644 --- a/booster/src/booster_stat.c +++ b/booster/src/booster_stat.c @@ -69,6 +69,9 @@ booster_rewinddir (void *dir); extern void booster_seekdir (void *dir, off_t offset); +extern off_t +booster_telldir (void *dir); + int stat (const char *path, void *buf) { @@ -188,3 +191,9 @@ seekdir (void *dir, off_t offset) { return booster_seekdir (dir, offset); } + +off_t +telldir (void *dir) +{ + return booster_telldir (dir); +} |