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)