diff options
author | Joel Sherrill <joel.sherrill@oarcorp.com> | 2013-11-21 16:42:17 +0000 |
---|---|---|
committer | Joel Sherrill <joel.sherrill@oarcorp.com> | 2013-11-21 16:42:17 +0000 |
commit | c9e978ed1b0a7ca8d0ed09480eba4b691c561271 (patch) | |
tree | 466a4f1dc860b4dd350c446adf9eb150abc91749 /libgloss/i960 | |
parent | 21cf2aee536c32ffe64a5f094b2d6ecc73bb8bb4 (diff) | |
download | newlib-c9e978ed1b0a7ca8d0ed09480eba4b691c561271.zip newlib-c9e978ed1b0a7ca8d0ed09480eba4b691c561271.tar.gz newlib-c9e978ed1b0a7ca8d0ed09480eba4b691c561271.tar.bz2 |
2013-11-21 Daniel Ramirez <javamonn@gmail.com>
* d30v/syscalls.c, i960/mon960.c, m68k/io-stat.c, mt/stat.c,
spu/lstat.c, spu/stat.c: Add restrict keyword.
Diffstat (limited to 'libgloss/i960')
-rw-r--r-- | libgloss/i960/mon960.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgloss/i960/mon960.c b/libgloss/i960/mon960.c index f81b6ac..7b1e07e 100644 --- a/libgloss/i960/mon960.c +++ b/libgloss/i960/mon960.c @@ -37,7 +37,7 @@ fstat (int file, struct stat *st) } int -stat (const char *filename, struct stat *st) +stat (const char *__restrict filename, struct stat *__restrict st) { st->st_mode = S_IFCHR; return 0; |