bloom: kill unused function
[fio.git] / lib / bloom.h
index b3cde950450762fb46ffad52b12270a31e4d9ef6..127ed9b77fb2100e692291f2dc0a155a23687617 100644 (file)
@@ -7,7 +7,6 @@ struct bloom;
 
 struct bloom *bloom_new(uint64_t entries);
 void bloom_free(struct bloom *b);
-int bloom_check(struct bloom *b, uint32_t *data, unsigned int nwords);
 int bloom_set(struct bloom *b, uint32_t *data, unsigned int nwords);
 
 #endif