diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-10-14 22:56:25 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-10-14 22:56:25 +0000 |
commit | 7d4722e3fd1c4205bba9fddf7a1de611d5151ebd (patch) | |
tree | ad47ea3abe962721a12650a82287c317b7d681b6 /locale/localeinfo.h | |
parent | daa226125cf9570ac726e21fc33d19101123a5c0 (diff) | |
download | glibc-7d4722e3fd1c4205bba9fddf7a1de611d5151ebd.tar glibc-7d4722e3fd1c4205bba9fddf7a1de611d5151ebd.tar.gz glibc-7d4722e3fd1c4205bba9fddf7a1de611d5151ebd.tar.bz2 glibc-7d4722e3fd1c4205bba9fddf7a1de611d5151ebd.zip |
[BZ #368]
* SUPPORTED (SUPPORTED-LOCALES): Add dz_BT.UTF-8.
[BZ #368]
* locales/dz_BT: New file.
Diffstat (limited to 'locale/localeinfo.h')
-rw-r--r-- | locale/localeinfo.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/locale/localeinfo.h b/locale/localeinfo.h index 065ee18cf9..3b0ed4f30b 100644 --- a/locale/localeinfo.h +++ b/locale/localeinfo.h @@ -1,5 +1,5 @@ /* Declarations for internal libc locale interfaces - Copyright (C) 1995-2001, 2002, 2003 Free Software Foundation, Inc. + Copyright (C) 1995-2001, 2002, 2003, 2005 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -31,7 +31,10 @@ #include <intl/loadinfo.h> /* For loaded_l10nfile definition. */ /* Magic number at the beginning of a locale data file for CATEGORY. */ -#define LIMAGIC(category) ((unsigned int) (0x20031115 ^ (category))) +#define LIMAGIC(category) \ + (category == LC_COLLATE \ + ? ((unsigned int) (0x20051014 ^ (category))) \ + : ((unsigned int) (0x20031115 ^ (category)))) /* Two special weight constants for the collation data. */ #define IGNORE_CHAR 2 |