From 1ea997b887ab23b9374a34f30acd6b88bd617e32 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Thu, 30 Aug 2018 08:48:09 -0400 Subject: [PATCH] add missing headers to malloc.h --- malloc.c | 2 -- malloc.h | 4 ++++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/malloc.c b/malloc.c index 912dc90..2a1a275 100644 --- a/malloc.c +++ b/malloc.c @@ -9,8 +9,6 @@ #include #include -#include - #include "third_party/libdivide.h" #include "malloc.h" diff --git a/malloc.h b/malloc.h index 296681a..61a4b48 100644 --- a/malloc.h +++ b/malloc.h @@ -1,6 +1,10 @@ #ifndef ALLOCATOR_H #define ALLOCATOR_H +#include + +#include + #ifndef H_MALLOC_PREFIX #define h_malloc malloc #define h_calloc calloc