author | Rich Felker <dalias@aerifal.cx> | 2012年12月03日 16:57:01 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012年12月03日 16:57:01 -0500 |
commit | 769fd4ce202225ba1f2621bbefb803ee9a268ebf (patch) | |
tree | 06244a0f20243de6bcf6f8acef96426719cdd09d /include/sys/stat.h | |
parent | 216b706548c16e3bc9612c8a2e5eed23f016504c (diff) | |
download | musl-769fd4ce202225ba1f2621bbefb803ee9a268ebf.tar.gz |
-rw-r--r-- | include/sys/stat.h | 5 |
diff --git a/include/sys/stat.h b/include/sys/stat.h index c63c6b8b..c6abab5a 100644 --- a/include/sys/stat.h +++ b/include/sys/stat.h @@ -88,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 |