2013-11-21 Daniel Ramirez <javamonn@gmail.com>

* libc/include/sys/stat.h, libc/sys/linux/sys/stat.h,
	libc/sys/m88kbug/syscalls.c, libc/sys/rdos/stat.c,
	libc/sys/sparc64/sys/stat.h: Add restrict keyword.
This commit is contained in:
Joel Sherrill
2013-11-21 16:35:47 +00:00
parent 37d3b04f88
commit 32e2cbeeab
6 changed files with 18 additions and 12 deletions

View File

@ -20,14 +20,14 @@
int _EXFUN(fstat,( int __fd, struct stat *__sbuf ));
int _EXFUN(mkdir,( const char *_path, mode_t __mode ));
int _EXFUN(mkfifo,( const char *__path, mode_t __mode ));
int _EXFUN(stat,( const char *__path, struct stat *__sbuf ));
int _EXFUN(stat,( const char *__restrict __path, struct stat *__restrict __sbuf ));
mode_t _EXFUN(umask,( mode_t __mask ));
#ifndef _POSIX_SOURCE
int _EXFUN(fstat64,( int __fd, struct stat64 *__sbuf ));
int _EXFUN(lstat,( const char *file_name, struct stat64 *buf));
int _EXFUN(lstat64,( const char *file_name, struct stat64 *buf));
int _EXFUN(stat64,( const char *__path, struct stat64 *__sbuf ));
int _EXFUN(lstat,( const char *__restrict file_name, struct stat64 *__restrict buf));
int _EXFUN(lstat64,( const char *__restrict file_name, struct stat64 *__restrict buf));
int _EXFUN(stat64,( const char *__restrict __path, struct stat64 *__restrict __sbuf ));
#endif /* _POSIX_SOURCE */
#endif /* _SYS_STAT_H */

View File

@ -76,7 +76,7 @@ int fstat(int file, struct stat *st) {
return(0);
}
int stat(char *filename, struct stat *st) {
int stat(char *__restrict filename, struct stat *__restrict st) {
st->st_mode = S_IFCHR;
return(0);
}

View File

@ -5,7 +5,7 @@
#include <sys/stat.h>
#include <errno.h>
int stat(const char *file, struct stat *st)
+int stat(const char *__restrict file, struct stat *__restrict st)
{
errno = ENOSYS;
return -1;

View File

@ -122,7 +122,7 @@ int _EXFUN(chmod,( const char *_path, mode_t _mode ));
int _EXFUN(fstat,( int _fd, struct stat *_sbuf ));
int _EXFUN(mkdir,( char *_path, mode_t _mode ));
int _EXFUN(mkfifo,( char *_path, mode_t _mode ));
int _EXFUN(stat,( const char *_path, struct stat *_sbuf ));
int _EXFUN(stat,( const char *__restrict _path, struct stat *__restrict _sbuf ));
mode_t _EXFUN(umask,( mode_t _mask ));
#ifdef __cplusplus