From 419ae6d5c95629d3ebaff6f1880d52cb027ba924 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 22 May 2012 21:52:08 -0400 Subject: support _BSD_SOURCE feature test macro patch by Isaac Dunham. matched closely (maybe not exact) to glibc's idea of what _BSD_SOURCE should make visible. --- include/sys/stat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/sys/stat.h') diff --git a/include/sys/stat.h b/include/sys/stat.h index 5d50ae76..14a5424b 100644 --- a/include/sys/stat.h +++ b/include/sys/stat.h @@ -90,7 +90,7 @@ int utimensat(int, const char *, const struct timespec [2], int); int lchmod(const char *, mode_t); #endif -#ifdef _GNU_SOURCE +#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) #define S_IREAD S_IRUSR #define S_IWRITE S_IWUSR #define S_IEXEC S_IXUSR -- cgit v1.2.1