1//////////////////////////////////////////////////////////////////////////////
2//
3// (C) Copyright Ion Gaztanaga 2012-2013. Distributed under the Boost
4// Software License, Version 1.0. (See accompanying file
5// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6//
7// See http://www.boost.org/libs/container for documentation.
8//
9//////////////////////////////////////////////////////////////////////////////
10
11
12#define DLMALLOC_VERSION 286
13
14#ifndef DLMALLOC_VERSION
15 #error "DLMALLOC_VERSION undefined"
16#endif
17
18#ifdef __VXWORKS__
19// no sbrk() in VxWorks, configure dlmalloc to use only mmap()
20#define HAVE_MORECORE 0
21#endif
22
23#if DLMALLOC_VERSION == 286
24 #include "dlmalloc_ext_2_8_6.c"
25#else
26 #error "Unsupported boost_cont_VERSION version"
27#endif
28

source code of boost/libs/container/src/alloc_lib.c