diff options
author | Rich Felker <dalias@aerifal.cx> | 2019-07-18 19:44:20 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2019-07-18 19:47:46 -0400 |
commit | 67bf602f14249ff1757c54f071faa3f778279c02 (patch) | |
tree | 2b9bef510e1341e07e0e76b62d0901fd6a0ee189 | |
parent | eeff60608c7aa65806c7c9f0ebddcf2520684ffa (diff) | |
download | musl-67bf602f14249ff1757c54f071faa3f778279c02.tar.gz musl-67bf602f14249ff1757c54f071faa3f778279c02.tar.bz2 musl-67bf602f14249ff1757c54f071faa3f778279c02.tar.xz musl-67bf602f14249ff1757c54f071faa3f778279c02.zip |
cleanup includes now that stat, lstat no longer make direct syscalls
-rw-r--r-- | src/stat/lstat.c | 1 | ||||
-rw-r--r-- | src/stat/stat.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/stat/lstat.c b/src/stat/lstat.c index 8b365ba2..9f95218a 100644 --- a/src/stat/lstat.c +++ b/src/stat/lstat.c @@ -1,6 +1,5 @@ #include <sys/stat.h> #include <fcntl.h> -#include "syscall.h" int lstat(const char *restrict path, struct stat *restrict buf) { diff --git a/src/stat/stat.c b/src/stat/stat.c index b4e62795..528870d2 100644 --- a/src/stat/stat.c +++ b/src/stat/stat.c @@ -1,6 +1,5 @@ #include <sys/stat.h> #include <fcntl.h> -#include "syscall.h" int stat(const char *restrict path, struct stat *restrict buf) { |