X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstat%2Fstatvfs.c;h=637bf82f64653fecee935c8d0df03ce5c76b217c;hb=9724defdb72fdb2ae4e8a60e928d40d84fe04800;hp=5fadb3b4b12d8cf15d5b2506433d538c1a64df4c;hpb=246e15c0dc4f2e0120f7e54445d621bd3b1afbd8;p=musl diff --git a/src/stat/statvfs.c b/src/stat/statvfs.c index 5fadb3b4..637bf82f 100644 --- a/src/stat/statvfs.c +++ b/src/stat/statvfs.c @@ -39,7 +39,7 @@ static void fixup(struct statvfs *out, const struct statfs *in) out->f_namemax = in->f_namelen; } -int statvfs(const char *path, struct statvfs *buf) +int statvfs(const char *restrict path, struct statvfs *restrict buf) { struct statfs kbuf; if (__statfs(path, &kbuf)<0) return -1;