X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Flargefile.c;h=b71a77f4051f5c295bc0daebbbd5a9cd90fa3b60;hb=5f0bd05a15aaf93f46baf9b8aa3e9b0bfbca26ab;hp=291f7c9da751cc0cd399c7dc8f6adb8bdc5a053b;hpb=b9cab2458f01739cd425d443058e34b76dc7594b;p=sbcl.git diff --git a/src/runtime/largefile.c b/src/runtime/largefile.c index 291f7c9..b71a77f 100644 --- a/src/runtime/largefile.c +++ b/src/runtime/largefile.c @@ -22,6 +22,7 @@ #include #include +#include #include #include @@ -60,4 +61,9 @@ lstat_largefile(const char *file_name, struct stat *buf) { return lstat(file_name, buf); } +struct dirent64 * +readdir_largefile(DIR *dir) { + return readdir64(dir); +} + #endif