summaryrefslogtreecommitdiff
path: root/src/sys/stat
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/stat')
-rw-r--r--src/sys/stat/chmod.c2
-rw-r--r--src/sys/stat/fstat.c2
-rw-r--r--src/sys/stat/mkdir.c2
-rw-r--r--src/sys/stat/mkfifo.c2
-rw-r--r--src/sys/stat/stat.c4
-rw-r--r--src/sys/stat/umask.c2
6 files changed, 7 insertions, 7 deletions
diff --git a/src/sys/stat/chmod.c b/src/sys/stat/chmod.c
index 975cf01a..16aa6f5a 100644
--- a/src/sys/stat/chmod.c
+++ b/src/sys/stat/chmod.c
@@ -1,6 +1,6 @@
#include "sys/types.h"
#include <sys/stat.h>
-#include "../../_syscall.h"
+#include "_syscall.h"
int chmod(const char *path, mode_t mode)
{
diff --git a/src/sys/stat/fstat.c b/src/sys/stat/fstat.c
index c0276eda..33634dd0 100644
--- a/src/sys/stat/fstat.c
+++ b/src/sys/stat/fstat.c
@@ -1,6 +1,6 @@
#include "sys/types.h"
#include <sys/stat.h>
-#include "../../_syscall.h"
+#include "_syscall.h"
int fstat(int fildes, struct stat *buf)
{
diff --git a/src/sys/stat/mkdir.c b/src/sys/stat/mkdir.c
index 479faeca..ac46d907 100644
--- a/src/sys/stat/mkdir.c
+++ b/src/sys/stat/mkdir.c
@@ -1,6 +1,6 @@
#include "sys/types.h"
#include <sys/stat.h>
-#include "../../_syscall.h"
+#include "_syscall.h"
int mkdir(const char *path, mode_t mode)
{
diff --git a/src/sys/stat/mkfifo.c b/src/sys/stat/mkfifo.c
index e34079e7..13469d6f 100644
--- a/src/sys/stat/mkfifo.c
+++ b/src/sys/stat/mkfifo.c
@@ -1,6 +1,6 @@
#include "sys/types.h"
#include <sys/stat.h>
-#include "../../_syscall.h"
+#include "_syscall.h"
#ifndef S_IFIFO
#include "S_IFIFO.c"
diff --git a/src/sys/stat/stat.c b/src/sys/stat/stat.c
index 233a0587..a4442bbe 100644
--- a/src/sys/stat/stat.c
+++ b/src/sys/stat/stat.c
@@ -1,8 +1,8 @@
#include "sys/types.h"
#include <sys/stat.h>
#include "stdlib.h"
-#include "../../_assert.h"
-#include "../../_syscall.h"
+#include "_assert.h"
+#include "_syscall.h"
int stat(const char * restrict path, struct stat * restrict buf)
{
diff --git a/src/sys/stat/umask.c b/src/sys/stat/umask.c
index 601f67f2..e3f14b73 100644
--- a/src/sys/stat/umask.c
+++ b/src/sys/stat/umask.c
@@ -1,6 +1,6 @@
#include "sys/types.h"
#include <sys/stat.h>
-#include "../../_syscall.h"
+#include "_syscall.h"
mode_t umask(mode_t cmask)
{