Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2013-11-22 05:17:42 +0400
committerJoel Sherrill <joel.sherrill@oarcorp.com>2013-11-22 05:17:42 +0400
commit2464ecbf64d1cd890fe52492b4ccf8ace348f9aa (patch)
tree36d02cc7064b6656885809b8b52faaaec4a30414 /newlib/libc/sys
parentd0d3968f8f53a9c076788028eee86576ef6e447e (diff)
2013-11-21 Daniel Ramirez <javamonn@gmail.com>
* libc/sys/linux/statvfs.c (statvfs): Added restrict keyword.
Diffstat (limited to 'newlib/libc/sys')
-rw-r--r--newlib/libc/sys/linux/statvfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/sys/linux/statvfs.c b/newlib/libc/sys/linux/statvfs.c
index 4b0d51abd..be125c292 100644
--- a/newlib/libc/sys/linux/statvfs.c
+++ b/newlib/libc/sys/linux/statvfs.c
@@ -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;