From: Ulrich Drepper Date: Sat, 15 Oct 2011 05:06:47 +0000 (-0400) Subject: Fix definition of __isctype_f X-Git-Tag: glibc-2.15~237 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=538faaa7f2cc76335a06c2d53c5902dfb7e58174;p=thirdparty%2Fglibc.git Fix definition of __isctype_f --- diff --git a/ChangeLog b/ChangeLog index 4d70e837e02..1b13a1eae7b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2011-10-15 Ulrich Drepper + + * ctype/ctype.h (__isctype_f): Add missing __THROW. + 2011-10-14 Ulrich Drepper * elf/pldd-xx.c (find_maps): Remove leftover debug message. diff --git a/ctype/ctype.h b/ctype/ctype.h index 111e3a95e62..1f3052abff4 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; \ }