From: Rich Felker Date: Thu, 18 Jul 2019 23:44:20 +0000 (-0400) Subject: cleanup includes now that stat, lstat no longer make direct syscalls X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=67bf602f14249ff1757c54f071faa3f778279c02;p=musl cleanup includes now that stat, lstat no longer make direct syscalls --- 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 #include -#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 #include -#include "syscall.h" int stat(const char *restrict path, struct stat *restrict buf) {