diff options
Diffstat (limited to 'src/sys/stat/stat.c')
-rw-r--r-- | src/sys/stat/stat.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/sys/stat/stat.c b/src/sys/stat/stat.c deleted file mode 100644 index 0b4f341f..00000000 --- a/src/sys/stat/stat.c +++ /dev/null @@ -1,16 +0,0 @@ -#include <sys/types.h> -#include <sys/stat.h> -#include <stdlib.h> -#include "_safety.h" -#include "_syscall.h" - -int stat(const char * restrict path, struct stat * restrict buf) -{ - ASSERT_NONNULL(path); - ASSERT_NONNULL(buf); - - SYSCALL(stat, int, -1, path, buf, 0, 0, 0, 0); -} -/* -POSIX(1) -*/ |