summaryrefslogtreecommitdiff
path: root/Demos/libraries/mymath.c
blob: 91d8a4a876fd8de6b6cd3863802b02223c494bf5 (plain)
1
2
3
4
5
#include "math.h"

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