summaryrefslogtreecommitdiff
path: root/docs/examples/tutorial/external/libc_sin.py
blob: f4223253d877978d018d57cd8ebb23e85130de25 (plain)
1
2
3
4
5
from cython.cimports.libc.math import sin

@cython.cfunc
def f(x: cython.double) -> cython.double:
    return sin(x * x)