$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r80097 - trunk/tools/build/v2/engine
From: steven_at_[hidden]
Date: 2012-08-20 17:54:26
Author: steven_watanabe
Date: 2012-08-20 17:54:26 EDT (Mon, 20 Aug 2012)
New Revision: 80097
URL: http://svn.boost.org/trac/boost/changeset/80097
Log:
Add missing #include. Fixes #7243.
Text files modified:
trunk/tools/build/v2/engine/mem.h | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
Modified: trunk/tools/build/v2/engine/mem.h
==============================================================================
--- trunk/tools/build/v2/engine/mem.h (original)
+++ trunk/tools/build/v2/engine/mem.h 2012-08-20 17:54:26 EDT (Mon, 20 Aug 2012)
@@ -65,6 +65,8 @@
#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)