about summary refs log tree commit diff
path: root/src/stat/stat.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stat/stat.c')
-rw-r--r--src/stat/stat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stat/stat.c b/src/stat/stat.c
index c5491eb0..c6de7168 100644
--- a/src/stat/stat.c
+++ b/src/stat/stat.c
@@ -2,7 +2,7 @@
 #include "syscall.h"
 #include "libc.h"
 
-int stat(const char *path, struct stat *buf)
+int stat(const char *restrict path, struct stat *restrict buf)
 {
 	return syscall(SYS_stat, path, buf);
 }