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 8b365ba284fed848420c62cf9ab2c4e194273e02..9f95218a4e83e38929542861b4d3349f78ef3a85 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 b4e627957654316d5e42aa8172d824b5989a8c36..528870d2fcb786060aef053ad1b1ddddabf5ee02 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)
 {