c9e978ed1b
* d30v/syscalls.c, i960/mon960.c, m68k/io-stat.c, mt/stat.c, spu/lstat.c, spu/stat.c: Add restrict keyword.
13 lines
196 B
C
13 lines
196 B
C
#include <_ansi.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include "trap.h"
|
|
|
|
|
|
int
|
|
stat (const char *__restrict path, struct stat *__restrict st)
|
|
|
|
{
|
|
return TRAP0 (SYS_stat, path, st, 0);
|
|
}
|