#ifndef PYTHONIC_MATH_TRUNC_HPP #define PYTHONIC_MATH_TRUNC_HPP #include "pythonic/include/math/trunc.hpp" #include "pythonic/utils/functor.hpp" #include PYTHONIC_NS_BEGIN namespace math { template long trunc(T x) { return x; } } PYTHONIC_NS_END #endif