2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-13 12:22:17 +00:00

Add missing #include. Fixes #7243.

[SVN r80097]
This commit is contained in:
Steven Watanabe
2012-08-20 21:54:26 +00:00
parent 1e1c9f9279
commit 1e07fc77a1

View File

@@ -65,6 +65,8 @@ http://www.boost.org/LICENSE_1_0.txt)
#else
/* Standard C memory allocation. */
#include <stdlib.h>
#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)