blob: 699b9268c6e852cf40f4cec57089359933f96980 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef PYTHONIC_INCLUDE_CMATH_SIN_HPP
#define PYTHONIC_INCLUDE_CMATH_SIN_HPP
#include "pythonic/include/utils/functor.hpp"
#include "pythonic/include/types/complex.hpp"
#include <cmath>
PYTHONIC_NS_BEGIN
namespace cmath
{
DEFINE_FUNCTOR_2(sin, std::sin);
}
PYTHONIC_NS_END
#endif
|