/*============================================================================= Copyright (c) 2011-2013 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout 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 SPROUT_CONFIG_STDLIB_HPP #define SPROUT_CONFIG_STDLIB_HPP #ifdef __cplusplus # include #else # include #endif #if defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION) # include #else # include # if defined(__LIBCOMO__) # include # elif defined(__STD_RWCOMPILER_H__) || defined(_RWSTD_VER) # include # elif defined(_LIBCPP_VERSION) # include # elif defined(__GLIBCPP__) || defined(__GLIBCXX__) # include # elif defined(__STL_CONFIG_H) # include # elif defined(__MSL_CPP__) # include # elif defined(__IBMCPP__) # include # elif defined(MSIPL_COMPILE_H) # include # elif (defined(_YVALS) && !defined(__IBMCPP__)) || defined(_CPPLIB_VER) # include # endif #endif #endif // #ifndef SPROUT_CONFIG_STDLIB_HPP