summaryrefslogtreecommitdiff
path: root/src/math/jn.c
blob: dedd0dbb04e28ba6366b00128651b39fa600c7fb (plain)
1
2
3
4
5
6
7
8
9
10
#include <math.h>

double jn(int n, double x)
{
        return x;
}

/*
XOPEN(4)
*/