Fix definition of __isctype_f
authorUlrich Drepper <drepper@gmail.com>
Sat, 15 Oct 2011 05:06:47 +0000 (01:06 -0400)
committerUlrich Drepper <drepper@gmail.com>
Sat, 15 Oct 2011 05:06:47 +0000 (01:06 -0400)
ChangeLog
ctype/ctype.h

index 4d70e83..1b13a1e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index 111e3a9..1f3052a 100644 (file)
@@ -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; \
   }