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

@ -5,7 +5,7 @@
int
stat (const char *path, struct stat *st)
stat (const char *__restrict path, struct stat *__restrict st)
{
return TRAP0 (SYS_stat, path, st, 0);