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


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