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.
This commit is contained in:
Joel Sherrill
2013-11-21 16:42:17 +00:00
parent 21cf2aee53
commit c9e978ed1b
6 changed files with 10 additions and 5 deletions

View File

@ -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;