summaryrefslogtreecommitdiff
path: root/src/math/jn.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/jn.c')
-rw-r--r--src/math/jn.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/math/jn.c b/src/math/jn.c
new file mode 100644
index 00000000..dedd0dbb
--- /dev/null
+++ b/src/math/jn.c
@@ -0,0 +1,10 @@
+#include <math.h>
+
+double jn(int n, double x)
+{
+ return x;
+}
+
+/*
+XOPEN(4)
+*/