diff options
author | Chris Demetriou <cgd@google.com> | 2010-03-24 17:10:47 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2010-03-24 17:10:47 -0700 |
commit | 03615f7d837398790f88f7bd936a33a99e799af5 (patch) | |
tree | cfd01629ca4e1d26cfbb8ccc5485a6190831b3ba /locale/programs/simple-hash.c | |
parent | c8727fa6e5073d28ed6d0eb40a006ac2c1b9f9f3 (diff) | |
download | glibc-03615f7d837398790f88f7bd936a33a99e799af5.zip glibc-03615f7d837398790f88f7bd936a33a99e799af5.tar.gz glibc-03615f7d837398790f88f7bd936a33a99e799af5.tar.bz2 |
ocale-archive differs between 32 and 64 bit platforms
Diffstat (limited to 'locale/programs/simple-hash.c')
-rw-r--r-- | locale/programs/simple-hash.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/locale/programs/simple-hash.c b/locale/programs/simple-hash.c index 5bd65f2..b9cc237 100644 --- a/locale/programs/simple-hash.c +++ b/locale/programs/simple-hash.c @@ -21,6 +21,7 @@ # include <config.h> #endif +#include <inttypes.h> #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -49,6 +50,7 @@ # define bcopy(s, d, n) memcpy ((d), (s), (n)) #endif +#define hashval_t uint32_t #include "hashval.h" extern void *xmalloc (size_t __n); |