From f800969d351a72b79da2944a4a971ea10bee3cc2 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Tue, 19 Aug 2014 10:07:00 -0700 Subject: [PATCH] Remove unused defines from . Bug: 14659579 Change-Id: I2ab02b13cafe3faad31248b843d39ab2cdbfeb91 --- libc/include/features.h | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/libc/include/features.h b/libc/include/features.h index 057d1de45..52184a881 100644 --- a/libc/include/features.h +++ b/libc/include/features.h @@ -37,21 +37,4 @@ # define __USE_GNU 1 #endif -/* C95 support */ -#undef __USE_ISOC95 -#if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199409L -# define __USE_ISOC95 1 -#endif - -/* C99 support */ -#undef __USE_ISOC99 -#if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L -# define __USE_ISOC99 1 -#endif - -/* Posix support */ -#define __USE_POSIX 1 -#define __USE_POSIX2 1 -#define __USE_XPG 1 - #endif /* _FEATURES_H_ */