summaryrefslogtreecommitdiff
path: root/Demos/libraries/call_mymath.pyx
blob: 1b45f80433609a612fec0eda224337a90b6fed68 (plain)
1
2
3
4
5
cdef extern from "mymath.h":
    double sinc(double)

def call_sinc(x):
    return sinc(x)