summaryrefslogtreecommitdiff
path: root/docs/examples/tutorial/external/libc_sin.pyx
blob: fb247c03df130c2f137b912fcd6aba4a82e0e118 (plain)
1
2
3
4
from libc.math cimport sin

cdef double f(double x):
    return sin(x * x)