From 07c416ed0979daa54e0b032986aaaf1b892cc690 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Mon, 7 May 2001 08:43:11 +0000 Subject: Update. 2001-05-05 Jakub Jelinek * include/features.h (__USE_EXTERN_INLINES): Don't define if __NO_INLINE__ is defined. * ctype/ctype.h (tolower, toupper): Change the guard condition to __USE_EXTERN_INLINES check only. * stdlib/stdlib.h (strtod, ...): Likewise. * wcsmbs/wchar.h (mbrlen): Likewise. * string/string.h: Only include bits/string.h and bits/string2.h if __NO_INLINE__ is not defined. --- stdlib/stdlib.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'stdlib') diff --git a/stdlib/stdlib.h b/stdlib/stdlib.h index 5d410af..5283440 100644 --- a/stdlib/stdlib.h +++ b/stdlib/stdlib.h @@ -287,8 +287,7 @@ extern unsigned long long int __strtoull_internal (__const char * # endif #endif /* GCC */ -#if defined __OPTIMIZE__ && !defined __OPTIMIZE_SIZE__ \ - && defined __USE_EXTERN_INLINES +#ifdef __USE_EXTERN_INLINES /* Define inline functions which call the internal entry points. */ extern __inline double -- cgit v1.1