Current File : //proc/self/root/usr/include/boost/coroutine/stack_allocator.hpp
//          Copyright Oliver Kowalke 2009.
// Distributed under the Boost Software License, Version 1.0.
//    (See accompanying file LICENSE_1_0.txt or copy at
//          http://www.boost.org/LICENSE_1_0.txt)

#ifndef BOOST_COROUTINES_STACK_ALLOCATOR_H
#define BOOST_COROUTINES_STACK_ALLOCATOR_H

#include <boost/config.hpp>

#if defined (BOOST_WINDOWS)
#include <boost/coroutine/detail/stack_allocator_windows.hpp>
#else
#include <boost/coroutine/detail/stack_allocator_posix.hpp>
#endif

namespace boost {
namespace coroutines {
using detail::stack_allocator;
}}

#endif // BOOST_COROUTINES_STACK_ALLOCATOR_H