X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Fsys%2Fstat.h;h=5d50ae76f7a703ce9e2940992dd159983cd670a0;hb=106e75f7121b009c069733dcb8a70fe5e4380ab0;hp=25c199f9d3dab96670d04329c7828e5ba6bbc5ce;hpb=d5ca067c7bb47081c169ff8b0213c73418f0525e;p=musl diff --git a/include/sys/stat.h b/include/sys/stat.h index 25c199f9..5d50ae76 100644 --- a/include/sys/stat.h +++ b/include/sys/stat.h @@ -47,29 +47,26 @@ extern "C" { #define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK) #define S_ISSOCK(mode) (((mode) & S_IFMT) == S_IFSOCK) +#ifndef S_IRUSR #define S_ISUID 04000 #define S_ISGID 02000 #define S_ISVTX 01000 - -#define S_IREAD 0400 -#define S_IWRITE 0200 -#define S_IEXEC 0100 - #define S_IRUSR 0400 #define S_IWUSR 0200 #define S_IXUSR 0100 #define S_IRWXU 0700 - #define S_IRGRP 0040 #define S_IWGRP 0020 #define S_IXGRP 0010 #define S_IRWXG 0070 - #define S_IROTH 0004 #define S_IWOTH 0002 #define S_IXOTH 0001 #define S_IRWXO 0007 +#endif +#define UTIME_NOW 0x3fffffff +#define UTIME_OMIT 0x3ffffffe int stat(const char *, struct stat *); int fstat(int, struct stat *); @@ -86,10 +83,30 @@ int mkdirat(int, const char *, mode_t); int mknodat(int, const char *, mode_t, dev_t); 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 +#ifdef _GNU_SOURCE +#define S_IREAD S_IRUSR +#define S_IWRITE S_IWUSR +#define S_IEXEC S_IXUSR +#endif + +#ifdef _LARGEFILE64_SOURCE +#define stat64 stat +#define fstat64 fstat +#define lstat64 lstat +#define fstatat64 fstatat +#define blksize64_t blksize_t +#define blkcnt64_t blkcnt_t +#define ino64_t ino_t +#define off64_t off_t +#endif + #ifdef __cplusplus } #endif