1 #ifndef PYTHONIC_INCLUDE_MATH_LDEXP_HPP
2 #define PYTHONIC_INCLUDE_MATH_LDEXP_HPP
3 
4 #include "pythonic/include/utils/functor.hpp"
5 #include <cmath>
6 
7 PYTHONIC_NS_BEGIN
8 
9 namespace math
10 {
11   DEFINE_FUNCTOR_2(ldexp, std::ldexp);
12 }
13 PYTHONIC_NS_END
14 
15 #endif
16