/* (c) 2014-2015 Glen Joseph Fernandes Distributed under the Boost Software License, Version 1.0. http://boost.org/LICENSE_1_0.txt */ #ifndef BOOST_ALIGN_ALIGNED_ALLOC_HPP #define BOOST_ALIGN_ALIGNED_ALLOC_HPP #include #if defined(BOOST_HAS_UNISTD_H) #include #endif #if defined(__APPLE__) || defined(__APPLE_CC__) || defined(macintosh) #include #endif #if defined(BOOST_ALIGN_USE_ALLOCATE) #include #elif defined(_MSC_VER) && !defined(UNDER_CE) #include #elif defined(__MINGW32__) && (__MSVCRT_VERSION__ >= 0x0700) #include #elif MAC_OS_X_VERSION_MIN_REQUIRED >= 1090 #include #elif MAC_OS_X_VERSION_MIN_REQUIRED >= 1060 #include #elif defined(__ANDROID__) #include #elif defined(__SunOS_5_11) || defined(__SunOS_5_12) #include #elif defined(sun) || defined(__sun) #include #elif (_POSIX_C_SOURCE >= 200112L) || (_XOPEN_SOURCE >= 600) #include #else #include #endif #endif