diff options
Diffstat (limited to 'newlib/libc/sys/rdos')
-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;
|