summaryrefslogtreecommitdiff
path: root/src/stat/fstatat.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stat/fstatat.c')
-rw-r--r--src/stat/fstatat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stat/fstatat.c b/src/stat/fstatat.c
index d6b9390c..863d5268 100644
--- a/src/stat/fstatat.c
+++ b/src/stat/fstatat.c
@@ -2,7 +2,7 @@
#include "syscall.h"
#include "libc.h"
-int fstatat(int fd, const char *path, struct stat *buf, int flag)
+int fstatat(int fd, const char *restrict path, struct stat *restrict buf, int flag)
{
return syscall(SYS_fstatat, fd, path, buf, flag);
}