summaryrefslogtreecommitdiffstats
path: root/test/test_malloc.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-01-06 17:04:21 +0100
committerDavid Robillard <d@drobilla.net>2019-01-06 17:04:21 +0100
commit5807e4a873730fdb245b3c39913fc6acb3779f8a (patch)
tree0dd771ec001522848c37709a15af8692f9713208 /test/test_malloc.c
parentef51139dfb60850c9ee4f6d9ea4ea7bfbc4aa15a (diff)
downloadzix-5807e4a873730fdb245b3c39913fc6acb3779f8a.tar.gz
zix-5807e4a873730fdb245b3c39913fc6acb3779f8a.tar.bz2
zix-5807e4a873730fdb245b3c39913fc6acb3779f8a.zip
Clean up includes
Diffstat (limited to 'test/test_malloc.c')
-rw-r--r--test/test_malloc.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/test/test_malloc.c b/test/test_malloc.c
index 9b430fe..202db30 100644
--- a/test/test_malloc.c
+++ b/test/test_malloc.c
@@ -16,16 +16,13 @@
#define _GNU_SOURCE
+#include "test_malloc.h"
+
#include <dlfcn.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
-#include <assert.h>
-#include <stdio.h>
-
-#include "test_malloc.h"
-
static void* (*test_malloc_sys_malloc)(size_t size) = NULL;
static size_t test_malloc_n_allocs = 0;