X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fstat%2Fstat.c;h=c6de7168dfda86343b0ec16a5c7c6fa05a773e55;hp=c5491eb0ed26364d2d7ce5f6442c7ba00087dee8;hb=400c5e5c8307a2ebe44ef1f203f5a15669f20347;hpb=bac03cdde1137c16b4c194e137310e2748661dcc 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); }