Your IP : 216.73.216.213
Current Path :
/
opt
/
alt
/
python37
/
share
/
doc
/
alt-python37-Cython
/
Demos
/
libraries
/
Upload File :
Current File : //opt/alt/python37/share/doc/alt-python37-Cython/Demos/libraries/mymath.c
#include "math.h" double sinc(double x) { return x == 0 ? 1 : sin(x)/x; }