about summary refs log tree commit diff
path: root/wcsmbs
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2001-05-07 08:43:11 +0000
committerAndreas Jaeger <aj@suse.de>2001-05-07 08:43:11 +0000
commit07c416ed0979daa54e0b032986aaaf1b892cc690 (patch)
tree8f3459afbbf7281749c11a4e6205f02c51b55b34 /wcsmbs
parent3ebab9ee234273cba06a488b5acabc3cb6538d5b (diff)
downloadglibc-07c416ed0979daa54e0b032986aaaf1b892cc690.tar.gz
glibc-07c416ed0979daa54e0b032986aaaf1b892cc690.tar.xz
glibc-07c416ed0979daa54e0b032986aaaf1b892cc690.zip
Update.
2001-05-05  Jakub Jelinek  <jakub@redhat.com>

	* 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.
Diffstat (limited to 'wcsmbs')
-rw-r--r--wcsmbs/wchar.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/wcsmbs/wchar.h b/wcsmbs/wchar.h
index 2130c12d4b..4206c796f7 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