X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=smalloc.h;h=1f7716f45a8d0308f4bcee85225382052d23d08f;hb=b7ed2a862ddafa7dbaa6299ee8633b6f8221e283;hp=f9a5e410fae79b570973a708c95f713912d8e40c;hpb=1e5324e723116a5faf9da686993cc79c14d62d4b;p=fio.git diff --git a/smalloc.h b/smalloc.h index f9a5e410..1f7716f4 100644 --- a/smalloc.h +++ b/smalloc.h @@ -1,11 +1,15 @@ #ifndef FIO_SMALLOC_H #define FIO_SMALLOC_H +#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 void smalloc_debug(size_t); extern unsigned int smalloc_pool_size;