1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- #define BOOST_PLATFORM "linux"
- #include <cstdlib>
- #if defined(__GLIBC__) && ((__GLIBC__ > 2) || ((__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 1)))
-
-
-
- # if defined __GNUC__
- # define BOOST_HAS_STDINT_H
- # endif
- #endif
- #if defined(__LIBCOMO__)
-
-
-
-
-
- # if __LIBCOMO_VERSION__ <= 20
- # define BOOST_NO_STDC_NAMESPACE
- # endif
- # if __LIBCOMO_VERSION__ <= 21
- # define BOOST_NO_SWPRINTF
- # endif
- #endif
- #if defined(__GLIBC__) && (__GLIBC__ >= 2)
- # define BOOST_HAS_GETTIMEOFDAY
- #endif
- #ifdef __USE_POSIX199309
- # define BOOST_HAS_NANOSLEEP
- #endif
- #if defined(__GLIBC__) && defined(__GLIBC_PREREQ)
-
- # if !__GLIBC_PREREQ(2,2) || (!defined(__USE_ISOC99) && !defined(__USE_UNIX98))
- # define BOOST_NO_SWPRINTF
- # endif
- #else
- # define BOOST_NO_SWPRINTF
- #endif
- #define BOOST_HAS_UNISTD_H
- #include <boost/config/posix_features.hpp>
- #ifndef __GNUC__
- # ifndef __extension__
- # define __extension__
- # endif
- # ifndef __const__
- # define __const__ const
- # endif
- # ifndef __volatile__
- # define __volatile__ volatile
- # endif
- # ifndef __signed__
- # define __signed__ signed
- # endif
- # ifndef __typeof__
- # define __typeof__ typeof
- # endif
- # ifndef __inline__
- # define __inline__ inline
- # endif
- #endif
|