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. --- ctype/ctype.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'ctype/ctype.h') diff --git a/ctype/ctype.h b/ctype/ctype.h index 6ae8f75681..f46dd86bc6 100644 --- a/ctype/ctype.h +++ b/ctype/ctype.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991,92,93,95,96,97,98,99 Free Software Foundation, Inc. +/* Copyright (C) 1991,92,93,95,96,97,98,99,2001 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -163,8 +163,7 @@ __exctype (_tolower); # define isblank(c) __isctype((c), _ISblank) # endif -# if defined __OPTIMIZE__ && !defined __OPTIMIZE_SIZE__ \ - && defined __USE_EXTERN_INLINES +# ifdef __USE_EXTERN_INLINES extern __inline int tolower (int __c) __THROW { -- cgit 1.4.1