]> sourceware.org Git - newlib-cygwin.git/commitdiff
2013-11-21 Daniel Ramirez <javamonn@gmail.com>
authorJoel Sherrill <joel.sherrill@oarcorp.com>
Fri, 22 Nov 2013 01:17:42 +0000 (01:17 +0000)
committerJoel Sherrill <joel.sherrill@oarcorp.com>
Fri, 22 Nov 2013 01:17:42 +0000 (01:17 +0000)
* libc/sys/linux/statvfs.c (statvfs): Added restrict keyword.

newlib/ChangeLog
newlib/libc/sys/linux/statvfs.c

index 0d817578b66dec68ebf12f5616a3609ebd19e2e7..e66924f15bdb5a7920af5251714e8e22b2cd2872 100644 (file)
@@ -1,3 +1,7 @@
+2013-11-21  Daniel Ramirez <javamonn@gmail.com>
+
+       * libc/sys/linux/statvfs.c (statvfs): Added restrict keyword.
+
 2013-11-21  Joel Sherrill <joel.sherrill@oarcorp.com>
 
        * libc/sys/rdos/chown.c, libc/sys/rdos/close.c, libc/sys/rdos/execve.c,
index 4b0d51abd1629c1438076622ff6e6c0d3d61e4c7..be125c292849328a82f9868b874a4a221c5ca7f7 100644 (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;
This page took 0.048761 seconds and 5 git commands to generate.