2013-11-21 Daniel Ramirez <javamonn@gmail.com>

* libc/sys/linux/statvfs.c (statvfs): Added restrict keyword.
This commit is contained in:
Joel Sherrill
2013-11-22 01:17:42 +00:00
parent d0d3968f8f
commit 2464ecbf64
2 changed files with 5 additions and 1 deletions

View File

@ -30,7 +30,7 @@
int
statvfs (const char *file, struct statvfs *buf)
statvfs (const char *__restrict file, struct statvfs *__restrict buf)
{
struct statfs fsbuf;
struct stat64 st;