Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > c754c10bf895f4953d8ea531ee4bae69 > files > 532

python3-cython-0.19.1-4.mga4.x86_64.rpm

#include "math.h"

double sinc(double x) {
    return x == 0 ? 1 : sin(x)/x;
}