mirror of git://sourceware.org/git/glibc.git
Updated.
1999-03-28 Andreas Jaeger <aj@arthur.rhein-neckar.de> * ctype/ctype.h (tolower, toupper): Add __THROW declaration to inline functions. Closes PR libc/1049.
This commit is contained in:
parent
b9f1792afb
commit
bce4e80067
|
@ -1,3 +1,8 @@
|
||||||
|
1999-03-28 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
||||||
|
|
||||||
|
* ctype/ctype.h (tolower, toupper): Add __THROW declaration to
|
||||||
|
inline functions. Closes PR libc/1049.
|
||||||
|
|
||||||
1999-03-25 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
1999-03-25 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
||||||
|
|
||||||
* timezone/README: Update from tzdata1999c and tzcode1999c.
|
* timezone/README: Update from tzdata1999c and tzcode1999c.
|
||||||
|
|
|
@ -151,13 +151,13 @@ __exctype (_tolower);
|
||||||
#if defined __OPTIMIZE__ && !defined __OPTIMIZE_SIZE__ \
|
#if defined __OPTIMIZE__ && !defined __OPTIMIZE_SIZE__ \
|
||||||
&& defined __USE_EXTERN_INLINES
|
&& defined __USE_EXTERN_INLINES
|
||||||
extern __inline int
|
extern __inline int
|
||||||
tolower (int __c)
|
tolower (int __c) __THROW
|
||||||
{
|
{
|
||||||
return __c >= -128 && __c < 256 ? __ctype_tolower[__c] : __c;
|
return __c >= -128 && __c < 256 ? __ctype_tolower[__c] : __c;
|
||||||
}
|
}
|
||||||
|
|
||||||
extern __inline int
|
extern __inline int
|
||||||
toupper (int __c)
|
toupper (int __c) __THROW
|
||||||
{
|
{
|
||||||
return __c >= -128 && __c < 256 ? __ctype_toupper[__c] : __c;
|
return __c >= -128 && __c < 256 ? __ctype_toupper[__c] : __c;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue