diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-05-11 11:30:23 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-05-11 11:30:23 +0000 |
commit | bbafb2eb27954c34967f91c705e74cc0c186970d (patch) | |
tree | 5294d3f6b2a9a5e82949cb03cb1733ba833fa9a3 /lib/hash.c | |
parent | 434bc13812639c6d76fe4f7b29424b7b21032dc9 (diff) | |
download | curl-bbafb2eb27954c34967f91c705e74cc0c186970d.tar.gz |
curl_global_init_mem() allows the memory functions to be replaced.
memory.h is included everywhere for this.
Diffstat (limited to 'lib/hash.c')
-rw-r--r-- | lib/hash.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/hash.c b/lib/hash.c index 51634e037..f33d91dc8 100644 --- a/lib/hash.c +++ b/lib/hash.c @@ -28,12 +28,10 @@ #include "hash.h" #include "llist.h" +#include "memory.h" -#ifdef CURLDEBUG /* this must be the last include file */ #include "memdebug.h" -#endif - static unsigned long hash_str(const char *key, size_t key_length) |