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. --- wcsmbs/wchar.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'wcsmbs/wchar.h') diff --git a/wcsmbs/wchar.h b/wcsmbs/wchar.h index 2130c12..4206c79 100644 --- a/wcsmbs/wchar.h +++ b/wcsmbs/wchar.h @@ -284,8 +284,7 @@ extern size_t __mbrlen (__const char *__restrict __s, size_t __n, extern size_t mbrlen (__const char *__restrict __s, size_t __n, mbstate_t *__restrict __ps) __THROW; -#if defined __OPTIMIZE__ && !defined __OPTIMIZE_SIZE__ \ - && defined __USE_EXTERN_INLINES +#ifdef __USE_EXTERN_INLINES /* Define inline function as optimization. */ extern __inline size_t mbrlen (__const char *__restrict __s, size_t __n, mbstate_t *__restrict __ps) __THROW -- cgit v1.1