axmap: fix bug with max_bs/min_bs ratio being > 64
[fio.git] / smalloc.h
index d5d4557e121a80fc702ede0ad0655c9cb052b1f9..f9a5e410fae79b570973a708c95f713912d8e40c 100644 (file)
--- a/smalloc.h
+++ b/smalloc.h
@@ -1,10 +1,12 @@
 #ifndef FIO_SMALLOC_H
 #define FIO_SMALLOC_H
 
-extern void *smalloc(unsigned int);
+extern void *smalloc(size_t);
 extern void sfree(void *);
 extern char *smalloc_strdup(const char *);
 extern void sinit(void);
 extern void scleanup(void);
 
+extern unsigned int smalloc_pool_size;
+
 #endif