]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* ctype/ctype.h (__ctype_b_loc, __ctype_tolower_loc, cvs/fedora-glibc-20080103T1958
authorUlrich Drepper <drepper@redhat.com>
Thu, 3 Jan 2008 19:51:01 +0000 (19:51 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 3 Jan 2008 19:51:01 +0000 (19:51 +0000)
__ctype_toupper_loc): Add __THROW.

ChangeLog
ctype/ctype.h

index d33e6700df36b06530a67e0bcae63439450873f5..6deb5ddf31a14b5856e1bdb89dcbb281a12c8611 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-01-03  Jakub Jelinek  <jakub@redhat.com>
+
+       * ctype/ctype.h (__ctype_b_loc, __ctype_tolower_loc,
+       __ctype_toupper_loc): Add __THROW.
+
 2008-01-02  Ulrich Drepper  <drepper@redhat.com>
 
        * sysdeps/unix/sysv/linux/check_pf.c (make_request): Fix
index 9ae7fb6088284b696d6c0388f6af79c92d6271a6..301e25d4d191ef64b411cd1bf3e8a1ca9a4b42b9 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991,92,93,95,96,97,98,99,2001,2002,2004,2007
+/* Copyright (C) 1991,92,93,95,96,97,98,99,2001,2002,2004,2007,2008
        Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
@@ -79,11 +79,11 @@ enum
    doesn't fit into an `unsigned char'.  But today more important is that
    the arrays are also used for multi-byte character sets.  */
 extern __const unsigned short int **__ctype_b_loc (void)
-     __attribute__ ((__const));
+     __THROW __attribute__ ((__const));
 extern __const __int32_t **__ctype_tolower_loc (void)
-     __attribute__ ((__const));
+     __THROW __attribute__ ((__const));
 extern __const __int32_t **__ctype_toupper_loc (void)
-     __attribute__ ((__const));
+     __THROW __attribute__ ((__const));
 
 #define __isctype(c, type) \
   ((*__ctype_b_loc ())[(int) (c)] & (unsigned short int) type)