X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=smalloc.h;h=8df10e6f67fd401defbb99b3e68ab0ab15a9d619;hb=e2239016d4839aeb54b5da61f94baf0d518233fb;hp=d5d4557e121a80fc702ede0ad0655c9cb052b1f9;hpb=d24c33a479fcd68debad128da057814495f65e20;p=fio.git diff --git a/smalloc.h b/smalloc.h index d5d4557e..8df10e6f 100644 --- a/smalloc.h +++ b/smalloc.h @@ -1,10 +1,15 @@ #ifndef FIO_SMALLOC_H #define FIO_SMALLOC_H -extern void *smalloc(unsigned int); +#include + +extern void *smalloc(size_t); +extern void *scalloc(size_t, 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