From 1e07fc77a1e94591dade6761659ff2d601c23450 Mon Sep 17 00:00:00 2001 From: Steven Watanabe Date: Mon, 20 Aug 2012 21:54:26 +0000 Subject: [PATCH] Add missing #include. Fixes #7243. [SVN r80097] --- src/engine/mem.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/engine/mem.h b/src/engine/mem.h index 57cbc5604..3238b1c66 100644 --- a/src/engine/mem.h +++ b/src/engine/mem.h @@ -65,6 +65,8 @@ http://www.boost.org/LICENSE_1_0.txt) #else /* Standard C memory allocation. */ + #include + #define bjam_malloc_x(s) malloc(s) #define bjam_calloc_x(n,s) calloc(n,s) #define bjam_realloc_x(p,s) realloc(p,s)