diff options
author | Joel Sherrill <joel.sherrill@oarcorp.com> | 2013-11-21 16:35:47 +0000 |
---|---|---|
committer | Joel Sherrill <joel.sherrill@oarcorp.com> | 2013-11-21 16:35:47 +0000 |
commit | 32e2cbeeab281a2da4a9957c831f13cfe7bdec69 (patch) | |
tree | 4bc7d158d0c622a1ced2110ecda61c27d0bb4890 /newlib/libc/sys/rdos/stat.c | |
parent | 37d3b04f8803d335c1262ae08ca7f4a91cdd445f (diff) | |
download | cygnal-32e2cbeeab281a2da4a9957c831f13cfe7bdec69.tar.gz cygnal-32e2cbeeab281a2da4a9957c831f13cfe7bdec69.tar.bz2 cygnal-32e2cbeeab281a2da4a9957c831f13cfe7bdec69.zip |
2013-11-21 Daniel Ramirez <javamonn@gmail.com>
* libc/include/sys/stat.h, libc/sys/linux/sys/stat.h,
libc/sys/m88kbug/syscalls.c, libc/sys/rdos/stat.c,
libc/sys/sparc64/sys/stat.h: Add restrict keyword.
Diffstat (limited to 'newlib/libc/sys/rdos/stat.c')
-rwxr-xr-x | newlib/libc/sys/rdos/stat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/sys/rdos/stat.c b/newlib/libc/sys/rdos/stat.c index f1683b63a..542a3cc1b 100755 --- a/newlib/libc/sys/rdos/stat.c +++ b/newlib/libc/sys/rdos/stat.c @@ -5,7 +5,7 @@ #include <sys/stat.h>
#include <errno.h>
-int stat(const char *file, struct stat *st)
++int stat(const char *__restrict file, struct stat *__restrict st)
{
errno = ENOSYS;
return -1;
|