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

@ -44,7 +44,7 @@ typedef struct
} syscall_stat_t;
int
lstat (const char *pathname, struct stat *pstat)
lstat (const char *__restrict pathname, struct stat *__restrict pstat)
{
syscall_stat_t sys;
struct jsre_stat pjstat;