Sophie

Sophie

distrib > Mandriva > current > i586 > media > main-updates > by-pkgid > 78c129e4a46a64625b53d61bd2b90fab > files > 350

python-cython-0.15-0.1mdv2010.2.i586.rpm

#include "math.h"

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