From: Timo Sirainen Date: Wed, 7 Jan 2009 18:37:46 +0000 (-0500) Subject: Removed unnecessary APPLE comment. X-Git-Tag: 1.2.beta1~149 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3570e3ba38efa5fb8efc6951ef1dbae1a77e1acf;p=thirdparty%2Fdovecot%2Fcore.git Removed unnecessary APPLE comment. --HG-- branch : HEAD --- diff --git a/src/lib/hash.h b/src/lib/hash.h index a7a7ae3a44..c4ab1f0f55 100644 --- a/src/lib/hash.h +++ b/src/lib/hash.h @@ -12,7 +12,6 @@ typedef int hash_cmp_callback_t(const void *p1, const void *p2); table_pool is used to allocate/free large hash tables, node_pool is used for smaller allocations and can also be alloconly pool. The pools must not be free'd before hash_table_destroy() is called. */ -/* APPLE - renamed from hash_create/hash_destroy to avoid libc conflict */ struct hash_table * hash_table_create(pool_t table_pool, pool_t node_pool, unsigned int initial_size, hash_callback_t *hash_cb, hash_cmp_callback_t *key_compare_cb);