mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
#ifndef SPROUT_CONFIG_STDLIB_HPP
|
|
#define SPROUT_CONFIG_STDLIB_HPP
|
|
|
|
#ifdef __cplusplus
|
|
# include <cstddef>
|
|
#else
|
|
# include <stddef.h>
|
|
#endif
|
|
|
|
#if defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION)
|
|
# include <sprout/config/stdlib/stlport.hpp>
|
|
#else
|
|
|
|
# include <utility>
|
|
|
|
# if defined(__LIBCOMO__)
|
|
# include <sprout/config/stdlib/libcomo.hpp>
|
|
# elif defined(__STD_RWCOMPILER_H__) || defined(_RWSTD_VER)
|
|
# include <sprout/config/stdlib/roguewave.hpp>
|
|
# elif defined(_LIBCPP_VERSION)
|
|
# include <sprout/config/stdlib/libcpp.hpp>
|
|
# elif defined(__GLIBCPP__) || defined(__GLIBCXX__)
|
|
# include <sprout/config/stdlib/libstdcpp3.hpp>
|
|
# elif defined(__STL_CONFIG_H)
|
|
# include <sprout/config/stdlib/sgi.hpp>
|
|
# elif defined(__MSL_CPP__)
|
|
# include <sprout/config/stdlib/msl.hpp>
|
|
# elif defined(__IBMCPP__)
|
|
# include <sprout/config/stdlib/vacpp.hpp>
|
|
# elif defined(MSIPL_COMPILE_H)
|
|
# include <sprout/config/stdlib/modena.hpp>
|
|
# elif (defined(_YVALS) && !defined(__IBMCPP__)) || defined(_CPPLIB_VER)
|
|
# include <sprout/config/stdlib/dinkumware.hpp>
|
|
# endif
|
|
#endif
|
|
|
|
#endif // #ifndef SPROUT_CONFIG_STDLIB_HPP
|