[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[commits] r4780 - in /fsf/trunk/libc: ChangeLog ctype/ctype.h
- To: commits@xxxxxxxxxx
- Subject: [commits] r4780 - in /fsf/trunk/libc: ChangeLog ctype/ctype.h
- From: eglibc@xxxxxxxxxx
- Date: Fri, 04 Jan 2008 08:06:02 -0000
Author: eglibc
Date: Fri Jan 4 00:06:00 2008
New Revision: 4780
Log:
Import glibc-mainline for 2008-01-04
Modified:
fsf/trunk/libc/ChangeLog
fsf/trunk/libc/ctype/ctype.h
Modified: fsf/trunk/libc/ChangeLog
==============================================================================
--- fsf/trunk/libc/ChangeLog (original)
+++ fsf/trunk/libc/ChangeLog Fri Jan 4 00:06:00 2008
@@ -1,3 +1,8 @@
+2008-01-03 Jakub Jelinek <jakub@xxxxxxxxxx>
+
+ * ctype/ctype.h (__ctype_b_loc, __ctype_tolower_loc,
+ __ctype_toupper_loc): Add __THROW.
+
2008-01-02 Ulrich Drepper <drepper@xxxxxxxxxx>
* sysdeps/unix/sysv/linux/check_pf.c (make_request): Fix
Modified: fsf/trunk/libc/ctype/ctype.h
==============================================================================
--- fsf/trunk/libc/ctype/ctype.h (original)
+++ fsf/trunk/libc/ctype/ctype.h Fri Jan 4 00:06:00 2008
@@ -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 @@
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)