From: Jens Axboe Date: Thu, 31 Aug 2017 14:34:27 +0000 (-0600) Subject: t/axmap: we don't need smalloc/sfree wrappers X-Git-Tag: fio-3.1~28 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=83070ccd1091a1c44ac838f95bab6811cbc287f5;p=fio.git t/axmap: we don't need smalloc/sfree wrappers Signed-off-by: Jens Axboe --- diff --git a/t/axmap.c b/t/axmap.c index e32ff98d..a803ce47 100644 --- a/t/axmap.c +++ b/t/axmap.c @@ -8,16 +8,6 @@ #include "../lib/lfsr.h" #include "../lib/axmap.h" -void *smalloc(size_t size) -{ - return malloc(size); -} - -void sfree(void *ptr) -{ - free(ptr); -} - static int test_regular(size_t size, int seed) { struct fio_lfsr lfsr;