1 #ifndef PYTHONIC_INCLUDE_MATH_SIN_HPP
2 #define PYTHONIC_INCLUDE_MATH_SIN_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(sin, std::sin);
12 }
13 PYTHONIC_NS_END
14 
15 #endif
16