]> git.ozlabs.org Git - ccan/blobdiff - alloc/alloc.h
bitmap: Avoid shadowing type name with parameter name
[ccan] / alloc / alloc.h
diff --git a/alloc/alloc.h b/alloc/alloc.h
deleted file mode 100644 (file)
index 7d0aa14..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-#ifndef ALLOC_H
-#define ALLOC_H
-#include <stdbool.h>
-
-void alloc_init(void *pool, unsigned long poolsize);
-void *alloc_get(void *pool, unsigned long poolsize,
-               unsigned long size, unsigned long align);
-void alloc_free(void *pool, unsigned long poolsize, void *free);
-bool alloc_check(void *pool, unsigned long poolsize);
-
-#endif /* ALLOC_H */