about summary refs log tree commit diff
path: root/locale/programs/simple-hash.h
diff options
context:
space:
mode:
authorChris Demetriou <cgd@google.com>2010-03-24 17:10:47 -0700
committerUlrich Drepper <drepper@redhat.com>2010-03-24 17:10:47 -0700
commit03615f7d837398790f88f7bd936a33a99e799af5 (patch)
treecfd01629ca4e1d26cfbb8ccc5485a6190831b3ba /locale/programs/simple-hash.h
parentc8727fa6e5073d28ed6d0eb40a006ac2c1b9f9f3 (diff)
downloadglibc-03615f7d837398790f88f7bd936a33a99e799af5.tar.gz
glibc-03615f7d837398790f88f7bd936a33a99e799af5.tar.xz
glibc-03615f7d837398790f88f7bd936a33a99e799af5.zip
ocale-archive differs between 32 and 64 bit platforms
Diffstat (limited to 'locale/programs/simple-hash.h')
-rw-r--r--locale/programs/simple-hash.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/locale/programs/simple-hash.h b/locale/programs/simple-hash.h
index b41c233b06..e0c32bcc34 100644
--- a/locale/programs/simple-hash.h
+++ b/locale/programs/simple-hash.h
@@ -19,6 +19,7 @@
 #ifndef _SIMPLE_HASH_H
 #define _SIMPLE_HASH_H
 
+#include <inttypes.h>
 #include <obstack.h>
 
 typedef struct hash_table
@@ -45,7 +46,7 @@ extern int iterate_table (const hash_table *htab, void **ptr,
 			  const void **key, size_t *keylen, void **data)
      __THROW;
 
-extern unsigned long int compute_hashval (const void *key, size_t keylen)
+extern uint32_t compute_hashval (const void *key, size_t keylen)
      __THROW;
 extern unsigned long int next_prime (unsigned long int seed) __THROW;