cleanup includes now that stat, lstat no longer make direct syscalls
authorRich Felker <dalias@aerifal.cx>
Thu, 18 Jul 2019 23:44:20 +0000 (19:44 -0400)
committerRich Felker <dalias@aerifal.cx>
Thu, 18 Jul 2019 23:47:46 +0000 (19:47 -0400)
src/stat/lstat.c
src/stat/stat.c

index 8b365ba..9f95218 100644 (file)
@@ -1,6 +1,5 @@
 #include <sys/stat.h>
 #include <fcntl.h>
-#include "syscall.h"
 
 int lstat(const char *restrict path, struct stat *restrict buf)
 {
index b4e6279..528870d 100644 (file)
@@ -1,6 +1,5 @@
 #include <sys/stat.h>
 #include <fcntl.h>
-#include "syscall.h"
 
 int stat(const char *restrict path, struct stat *restrict buf)
 {