diff options
Diffstat (limited to 'lib/libstand/nullfs.c')
| -rw-r--r-- | lib/libstand/nullfs.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/libstand/nullfs.c b/lib/libstand/nullfs.c index 96e69d2fa905..0f77bd4c185c 100644 --- a/lib/libstand/nullfs.c +++ b/lib/libstand/nullfs.c @@ -104,3 +104,9 @@ int null_stat (struct open_file *f, struct stat *sb) errno = EIO; return -1; } + +int null_readdir(struct open_file *f, struct dirent *d) +{ + errno = EIO; + return -1; +} |
