X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=smalloc.h;h=4b551e3e4be3fd979462371a4c866c349e2bb04e;hp=6905c6a8c3c806a7ce20616452bb4b82f1fbfe89;hb=85492cb89e2421ae71d92b1c88e75efda3ee1f1b;hpb=2b386d2569c9078ca9790c4e6d318ec3835b8739 diff --git a/smalloc.h b/smalloc.h index 6905c6a8..4b551e3e 100644 --- a/smalloc.h +++ b/smalloc.h @@ -1,7 +1,8 @@ #ifndef FIO_SMALLOC_H #define FIO_SMALLOC_H -extern void *smalloc(unsigned int); +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);