diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-10-15 01:06:47 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-10-15 01:06:47 -0400 |
commit | 538faaa7f2cc76335a06c2d53c5902dfb7e58174 (patch) | |
tree | 4a7cd137a6f0e6555fc93e562ce917a761cfe75e | |
parent | cdf2901f5e951cdcf88cd628892d188d5c660493 (diff) | |
download | glibc-538faaa7f2cc76335a06c2d53c5902dfb7e58174.tar glibc-538faaa7f2cc76335a06c2d53c5902dfb7e58174.tar.gz glibc-538faaa7f2cc76335a06c2d53c5902dfb7e58174.tar.bz2 glibc-538faaa7f2cc76335a06c2d53c5902dfb7e58174.zip |
Fix definition of __isctype_f
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | ctype/ctype.h | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2011-10-15 Ulrich Drepper <drepper@gmail.com> + + * ctype/ctype.h (__isctype_f): Add missing __THROW. + 2011-10-14 Ulrich Drepper <drepper@gmail.com> * elf/pldd-xx.c (find_maps): Remove leftover debug message. diff --git a/ctype/ctype.h b/ctype/ctype.h index 111e3a95e6..1f3052abff 100644 --- a/ctype/ctype.h +++ b/ctype/ctype.h @@ -92,7 +92,7 @@ extern __const __int32_t **__ctype_toupper_loc (void) #elif defined __USE_EXTERN_INLINES # define __isctype_f(type) \ __extern_inline int \ - is##type (int __c) \ + is##type (int __c) __THROW \ { \ return (*__ctype_b_loc ())[(int) (__c)] & (unsigned short int) _IS##type; \ } |