Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:30:07

0001 //  (C) Copyright John Maddock 2020.
0002 //  Use, modification and distribution are subject to the
0003 //  Boost Software License, Version 1.0. (See accompanying file
0004 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0005 
0006 //  See http://www.boost.org for most recent version.
0007 
0008 //  WASM specific config options:
0009 
0010 #define BOOST_PLATFORM "Wasm"
0011 
0012 #ifdef __has_include
0013 #if __has_include(<unistd.h>)
0014 #  define BOOST_HAS_UNISTD_H
0015 #endif
0016 #endif
0017 
0018 // boilerplate code:
0019 #include <boost/config/detail/posix_features.hpp>
0020 //
0021 // fenv lacks the C++11 macros:
0022 //
0023 #define BOOST_NO_FENV_H