]> granicus.if.org Git - musl/commitdiff
remove unused __getdents, rename and move file
authorRich Felker <dalias@aerifal.cx>
Tue, 11 Sep 2018 18:09:20 +0000 (14:09 -0400)
committerRich Felker <dalias@aerifal.cx>
Wed, 12 Sep 2018 18:34:35 +0000 (14:34 -0400)
the __-prefixed filename does not make sense when the only purpose of
this file is implementing a public function that's not used as a
backend for implementing the standard dirent functions.

src/linux/getdents.c [moved from src/dirent/__getdents.c with 50% similarity]

similarity index 50%
rename from src/dirent/__getdents.c
rename to src/linux/getdents.c
index 1acd5a696aa66fa8dc51ce38086aa3f80d7e0bce..90f7556e2f42493a18297a07dc37ddfd3ffe4b58 100644 (file)
@@ -1,12 +1,9 @@
 #include <dirent.h>
 #include "syscall.h"
-#include "libc.h"
 
-int __getdents(int fd, struct dirent *buf, size_t len)
+int getdents(int fd, struct dirent *buf, size_t len)
 {
        return syscall(SYS_getdents, fd, buf, len);
 }
 
-weak_alias(__getdents, getdents);
-
 LFS64(getdents);