2013-11-21 Daniel Ramirez <javamonn@gmail.com>
* libc/sys/linux/statvfs.c (statvfs): Added restrict keyword.
This commit is contained in:
parent
d0d3968f8f
commit
2464ecbf64
|
@ -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,
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue