summaryrefslogtreecommitdiff
path: root/src/stat
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2019-07-18 19:44:20 -0400
committerRich Felker <dalias@aerifal.cx>2019-07-18 19:47:46 -0400
commit67bf602f14249ff1757c54f071faa3f778279c02 (patch)
tree2b9bef510e1341e07e0e76b62d0901fd6a0ee189 /src/stat
parenteeff60608c7aa65806c7c9f0ebddcf2520684ffa (diff)
downloadmusl-67bf602f14249ff1757c54f071faa3f778279c02.tar.gz
cleanup includes now that stat, lstat no longer make direct syscalls
Diffstat (limited to 'src/stat')
-rw-r--r--src/stat/lstat.c1
-rw-r--r--src/stat/stat.c1
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)
{