diff options
author | Claudio Fontana <sick_soul@users.sourceforge.net> | 2006-01-29 14:07:19 +0000 |
---|---|---|
committer | Claudio Fontana <sick_soul@users.sourceforge.net> | 2006-01-29 14:07:19 +0000 |
commit | 8f646a2cfa6d68125bc7e18fe70a9a056a167367 (patch) | |
tree | 2efb398003bc19d63b34f62c40f0ffa48cd48cc7 /lib/regex_internal.h | |
parent | 7ea1831bf1d15b4e4d0bd8d8034d9b0c24e01617 (diff) | |
download | idutils-8f646a2cfa6d68125bc7e18fe70a9a056a167367.tar.gz idutils-8f646a2cfa6d68125bc7e18fe70a9a056a167367.tar.bz2 idutils-8f646a2cfa6d68125bc7e18fe70a9a056a167367.zip |
* updated with latest gnulib
Diffstat (limited to 'lib/regex_internal.h')
-rw-r--r-- | lib/regex_internal.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/regex_internal.h b/lib/regex_internal.h index d10ba1e..04be143 100644 --- a/lib/regex_internal.h +++ b/lib/regex_internal.h @@ -1,5 +1,5 @@ /* Extended regular expression matching and search library. - Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. + Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>. @@ -182,10 +182,9 @@ typedef unsigned long int bitset_word; # if BITSET_WORD_BITS <= SBC_MAX # error "Invalid SBC_MAX" # endif -#elif BITSET_WORD_MAX == (0xffffffff + 2) * 0xffffffff -/* Work around a bug in PGC GNU/Linux x86-64 5.2-1 and 6.0-8 (and - probably other versions), where the preprocessor mishandles large - unsigned values and thinks they are signed. */ + #elif BITSET_WORD_MAX == (0xffffffff + 2) * 0xffffffff +/* Work around a bug in 64-bit PGC (before version 6.1-2), where the + preprocessor mishandles large unsigned values as if they were signed. */ # define BITSET_WORD_BITS 64 #else # error "Add case for new bitset_word size" |