Sophie

Sophie

distrib > Fedora > 18 > i386 > by-pkgid > a825642caba16a631061cc74009998ee > files > 532

python3-Cython-0.19-1.fc18.i686.rpm

#include "math.h"

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