mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
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.
This commit is contained in:
@ -333,7 +333,8 @@ extern char *basename (__const char *__filename) __THROW;
|
||||
|
||||
|
||||
#if defined __GNUC__ && __GNUC__ >= 2
|
||||
# if defined __OPTIMIZE__ && !defined __OPTIMIZE_SIZE__ && !defined __cplusplus
|
||||
# if defined __OPTIMIZE__ && !defined __OPTIMIZE_SIZE__ \
|
||||
&& !defined __NO_INLINE__ && !defined __cplusplus
|
||||
/* When using GNU CC we provide some optimized versions of selected
|
||||
functions from this header. There are two kinds of optimizations:
|
||||
|
||||
|
Reference in New Issue
Block a user