diff options
author | Jakub Jelinek <jakub@redhat.com> | 2008-01-03 20:20:42 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2008-01-03 20:20:42 +0000 |
commit | 1e44f485d223b0f2f7b194935a0109cb7b713cc3 (patch) | |
tree | bd133eb985c9870f9b6ea0d22b831f6c9b2beb84 /ctype/ctype.h | |
parent | f163450fc0969ebd6f63c5d9bd059f6f0d107d75 (diff) | |
download | glibc-1e44f485d223b0f2f7b194935a0109cb7b713cc3.tar glibc-1e44f485d223b0f2f7b194935a0109cb7b713cc3.tar.gz glibc-1e44f485d223b0f2f7b194935a0109cb7b713cc3.tar.bz2 glibc-1e44f485d223b0f2f7b194935a0109cb7b713cc3.zip |
Updated to fedora-glibc-20080103T1958cvs/fedora-glibc-2_7_90-3
Diffstat (limited to 'ctype/ctype.h')
-rw-r--r-- | ctype/ctype.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ctype/ctype.h b/ctype/ctype.h index 9ae7fb6088..301e25d4d1 100644 --- a/ctype/ctype.h +++ b/ctype/ctype.h @@ -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) |