diff options
author | Roland McGrath <roland@gnu.org> | 2002-08-28 07:29:53 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-08-28 07:29:53 +0000 |
commit | a3f9038c879c11344430169d6daa8fad30d4f379 (patch) | |
tree | 3f8a79ac51aa7200d53aef80763961bff04e21c6 /locale/loadarchive.c | |
parent | 75261665f1dd29bdfedfe653a8d102fab2d012e6 (diff) | |
download | glibc-a3f9038c879c11344430169d6daa8fad30d4f379.tar.gz glibc-a3f9038c879c11344430169d6daa8fad30d4f379.tar.xz glibc-a3f9038c879c11344430169d6daa8fad30d4f379.zip |
Roland McGrath <roland@redhat.com>
* locale/hashval.h (compute_hashval): Use prototype defn. (hashval_t): New macro, defined to unsigned long int if not already defined. (compute_hashval): Return hashval_t instead of unsigned long int. * locale/loadarchive.c (hashval_t): New macro. * locale/programs/locarchive.c: Include hashval.h directly instead of simple-hash.h. (compute_hashval, hashval_t): Define these macros first. (insert_name): Use archive_hashval instead of compute_hashval. (add_locale, delete_locales_from_archive): Likewise. 2002-08-28 Jakub Jelinek <jakub@redhat.com>
Diffstat (limited to 'locale/loadarchive.c')
-rw-r--r-- | locale/loadarchive.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/locale/loadarchive.c b/locale/loadarchive.c index ef259b9bdb..ab824a7dba 100644 --- a/locale/loadarchive.c +++ b/locale/loadarchive.c @@ -35,6 +35,7 @@ /* Define the hash function. We define the function as static inline. */ #define compute_hashval static inline compute_hashval +#define hashval_t uint32_t #include "hashval.h" #undef compute_hashval |