X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=include%2Fsys%2Fstat.h;h=c6abab5a0c01f58746def40c29cc32cfe976c27e;hp=2a7ce233661ae9b43af88c799982ae3c0ccd5a1c;hb=ae0c1de530bc3b27069008b8b247171d08dbe80b;hpb=3b94daba711090f1936f59fae6f7cbcba963b29e diff --git a/include/sys/stat.h b/include/sys/stat.h index 2a7ce233..c6abab5a 100644 --- a/include/sys/stat.h +++ b/include/sys/stat.h @@ -4,6 +4,8 @@ extern "C" { #endif +#include + #define __NEED_dev_t #define __NEED_ino_t #define __NEED_mode_t @@ -68,10 +70,10 @@ extern "C" { #define UTIME_NOW 0x3fffffff #define UTIME_OMIT 0x3ffffffe -int stat(const char *, struct stat *); +int stat(const char *__restrict, struct stat *__restrict); int fstat(int, struct stat *); -int lstat(const char *, struct stat *); -int fstatat(int, const char *, struct stat *, int); +int lstat(const char *__restrict, struct stat *__restrict); +int fstatat(int, const char *__restrict, struct stat *__restrict, int); int chmod(const char *, mode_t); int fchmod(int, mode_t); int fchmodat(int, const char *, mode_t, int); @@ -86,11 +88,8 @@ int mkfifoat(int, const char *, mode_t); int futimens(int, const struct timespec [2]); int utimensat(int, const char *, const struct timespec [2], int); -#ifdef _BSD_SOURCE -int lchmod(const char *, mode_t); -#endif - #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) +int lchmod(const char *, mode_t); #define S_IREAD S_IRUSR #define S_IWRITE S_IWUSR #define S_IEXEC S_IXUSR