diff options
Diffstat (limited to 'sysdeps/stub')
-rw-r--r-- | sysdeps/stub/e_j0l.c | 9 | ||||
-rw-r--r-- | sysdeps/stub/e_j1l.c | 9 | ||||
-rw-r--r-- | sysdeps/stub/e_jnl.c | 11 |
3 files changed, 28 insertions, 1 deletions
diff --git a/sysdeps/stub/e_j0l.c b/sysdeps/stub/e_j0l.c index 90fa2c6ff1..c16e8a8a9d 100644 --- a/sysdeps/stub/e_j0l.c +++ b/sysdeps/stub/e_j0l.c @@ -9,3 +9,12 @@ __ieee754_j0l (long double x) } stub_warning (__ieee754_j0l) + +long double +__ieee754_y0l (long double x) +{ + fputs ("__ieee754_y0l not implemented\n", stderr); + return 0.0; +} + +stub_warning (__ieee754_y0l) diff --git a/sysdeps/stub/e_j1l.c b/sysdeps/stub/e_j1l.c index d84e3cd1c2..0a781e5cc1 100644 --- a/sysdeps/stub/e_j1l.c +++ b/sysdeps/stub/e_j1l.c @@ -9,3 +9,12 @@ __ieee754_j1l (long double x) } stub_warning (__ieee754_j1l) + +long double +__ieee754_y1l (long double x) +{ + fputs ("__ieee754_y1l not implemented\n", stderr); + return 0.0; +} + +stub_warning (__ieee754_y1l) diff --git a/sysdeps/stub/e_jnl.c b/sysdeps/stub/e_jnl.c index b9f59004ea..86ff03b031 100644 --- a/sysdeps/stub/e_jnl.c +++ b/sysdeps/stub/e_jnl.c @@ -2,10 +2,19 @@ #include <stdio.h> long double -__ieee754_jnl (long double x) +__ieee754_jnl (int n, long double x) { fputs ("__ieee754_jnl not implemented\n", stderr); return 0.0; } stub_warning (__ieee754_jnl) + +long double +__ieee754_ynl (int n, long double x) +{ + fputs ("__ieee754_ynl not implemented\n", stderr); + return 0.0; +} + +stub_warning (__ieee754_ynl) |