X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/089d061f2d8dd77840db5968992144474cb36b7c..12b998cbd883d557dcad7a10174be6634f2fb89c:/common/bucketsort.h?ds=sidebyside

diff --git a/common/bucketsort.h b/common/bucketsort.h
index 399277c1..d5423aa5 100644
--- a/common/bucketsort.h
+++ b/common/bucketsort.h
@@ -1,7 +1,6 @@
 #ifndef BUCKETSORT_H__
 #define BUCKETSORT_H__
 #include <stdint.h>
-#include <stdbool.h>
 #include <stdlib.h>
 typedef struct bucket {
 	uint32_t *head;
@@ -17,9 +16,6 @@ typedef struct bucket_info {
 		uint32_t numbuckets;
 } bucket_info_t;
 
-
-bool bucket_malloc(bucket_array_t bucket);
-void bucket_free(bucket_array_t bucket);
 void bucket_sort_intersect(uint32_t* const estart, uint32_t* const estop,
 								  uint32_t* const ostart, uint32_t* const ostop,
 								  bucket_info_t *bucket_info, bucket_array_t bucket);