From 1f4498530090a5fe7f6b2c46f2beb8818d7cb27b Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 29 Dec 2008 06:52:59 -0500 Subject: [PATCH] linux/stat.h: remove __GLIBC__ checks Only check __KERNEL__ so we don't assume the C library is glibc. Signed-off-by: Mike Frysinger --- include/uapi/linux/stat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/uapi/linux/stat.h b/include/uapi/linux/stat.h index 7b35e98d3c58..eb7474652d27 100644 --- a/include/uapi/linux/stat.h +++ b/include/uapi/linux/stat.h @@ -4,7 +4,7 @@ #include -#if defined(__KERNEL__) || !defined(__GLIBC__) || (__GLIBC__ < 2) +#if defined(__KERNEL__) #define S_IFMT 00170000 #define S_IFSOCK 0140000 -- 2.16.1