Add missing prototypes.

This commit is contained in:
Jason Evans 2013-12-17 15:30:49 -08:00
parent 0d6c5d8bd0
commit 1b75b4e6d1

View File

@ -19,6 +19,11 @@
#ifdef JEMALLOC_H_INLINES #ifdef JEMALLOC_H_INLINES
#ifndef JEMALLOC_ENABLE_INLINE #ifndef JEMALLOC_ENABLE_INLINE
uint32_t hash_x86_32(const void *key, int len, uint32_t seed);
void hash_x86_128(const void *key, const int len, uint32_t seed,
uint64_t r_out[2]);
void hash_x64_128(const void *key, const int len, const uint32_t seed,
uint64_t r_out[2]);
void hash(const void *key, size_t len, const uint32_t seed, void hash(const void *key, size_t len, const uint32_t seed,
size_t r_hash[2]); size_t r_hash[2]);
#endif #endif