summaryrefslogtreecommitdiff
path: root/src/math
diff options
context:
space:
mode:
Diffstat (limited to 'src/math')
-rw-r--r--src/math/gamma.c12
-rw-r--r--src/math/j0.c12
-rw-r--r--src/math/j1.c12
-rw-r--r--src/math/jn.c12
-rw-r--r--src/math/remainder.c14
-rw-r--r--src/math/scalb.c11
-rw-r--r--src/math/signgam.c7
-rw-r--r--src/math/y0.c12
-rw-r--r--src/math/y1.c12
-rw-r--r--src/math/yn.c12
10 files changed, 0 insertions, 116 deletions
diff --git a/src/math/gamma.c b/src/math/gamma.c
deleted file mode 100644
index 644b5fac..00000000
--- a/src/math/gamma.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#include <math.h>
-
-double gamma(double x)
-{
- SIGNAL_SAFE(0);
- return x;
-}
-
-/*
-XOPEN(4,600)
-LINK(m)
-*/
diff --git a/src/math/j0.c b/src/math/j0.c
deleted file mode 100644
index 38140422..00000000
--- a/src/math/j0.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#include <math.h>
-
-double j0(double x)
-{
- SIGNAL_SAFE(0);
- return x;
-}
-
-/*
-XOPEN(4)
-LINK(m)
-*/
diff --git a/src/math/j1.c b/src/math/j1.c
deleted file mode 100644
index 42214704..00000000
--- a/src/math/j1.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#include <math.h>
-
-double j1(double x)
-{
- SIGNAL_SAFE(0);
- return x;
-}
-
-/*
-XOPEN(4)
-LINK(m)
-*/
diff --git a/src/math/jn.c b/src/math/jn.c
deleted file mode 100644
index b490054c..00000000
--- a/src/math/jn.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#include <math.h>
-
-double jn(int n, double x)
-{
- SIGNAL_SAFE(0);
- return x;
-}
-
-/*
-XOPEN(4)
-LINK(m)
-*/
diff --git a/src/math/remainder.c b/src/math/remainder.c
deleted file mode 100644
index 667e9758..00000000
--- a/src/math/remainder.c
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <math.h>
-#define TGSOURCE "remainder.c"
-#include "_tgmath.h"
-
-TYPE TGFN(remainder)(TYPE x, TYPE y)
-{
- SIGNAL_SAFE(0);
-}
-
-/*
-XOPEN(400)
-POSIX(200112)
-LINK(m)
-*/
diff --git a/src/math/scalb.c b/src/math/scalb.c
deleted file mode 100644
index 55c59741..00000000
--- a/src/math/scalb.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <math.h>
-
-double scalb(double x, double n)
-{
- SIGNAL_SAFE(0);
-}
-
-/*
-XOPEN(400)
-LINK(m)
-*/
diff --git a/src/math/signgam.c b/src/math/signgam.c
deleted file mode 100644
index e200204b..00000000
--- a/src/math/signgam.c
+++ /dev/null
@@ -1,7 +0,0 @@
-#include <math.h>
-int signgam;
-/*
-SIGNAL_SAFE(0)
-XOPEN(4)
-LINK(m)
-*/
diff --git a/src/math/y0.c b/src/math/y0.c
deleted file mode 100644
index c70878ee..00000000
--- a/src/math/y0.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#include <math.h>
-
-double y0(double x)
-{
- SIGNAL_SAFE(0);
- return x;
-}
-
-/*
-XOPEN(4)
-LINK(m)
-*/
diff --git a/src/math/y1.c b/src/math/y1.c
deleted file mode 100644
index 819b3011..00000000
--- a/src/math/y1.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#include <math.h>
-
-double y1(double x)
-{
- SIGNAL_SAFE(0);
- return x;
-}
-
-/*
-XOPEN(4)
-LINK(m)
-*/
diff --git a/src/math/yn.c b/src/math/yn.c
deleted file mode 100644
index 3761b11c..00000000
--- a/src/math/yn.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#include <math.h>
-
-double yn(int n, double x)
-{
- SIGNAL_SAFE(0);
- return x;
-}
-
-/*
-XOPEN(4)
-LINK(m)
-*/