diff options
Diffstat (limited to 'src/stat/lstat.c')
-rw-r--r-- | src/stat/lstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stat/lstat.c b/src/stat/lstat.c index 9053d998..8f60358c 100644 --- a/src/stat/lstat.c +++ b/src/stat/lstat.c @@ -2,7 +2,7 @@ #include "syscall.h" #include "libc.h" -int lstat(const char *path, struct stat *buf) +int lstat(const char *restrict path, struct stat *restrict buf) { return syscall(SYS_lstat, path, buf); } |