summaryrefslogtreecommitdiff
path: root/docs/examples/tutorial/external/cpdef_sin.pyx
blob: 47e09f4336fbe2ceb44007624a5a2369a5166c49 (plain)
1
2
3
4
5
6
7
"""
>>> sin(0)
0.0
"""

cdef extern from "math.h":
    cpdef double sin(double x)