summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSzabolcs Nagy <nsz@port70.net>2012-12-11 22:57:39 +0100
committerSzabolcs Nagy <nsz@port70.net>2012-12-11 22:57:39 +0100
commit64623cd59a5e72c6322548bca3827a75d5d11918 (patch)
tree68862486bd3a1f3cb3dc545a0b4d0018bd02b21e
parentfaea4c9937d36b17e53fdc7d5a254d7e936e1755 (diff)
downloadmusl-64623cd59a5e72c6322548bca3827a75d5d11918.tar.gz
math: remove long double version of bessel functions from math.h
j0l,j1l,jnl,y0l,j1l,jnl are gnu extensions, bsd and posix do not have them. noone seems to use them and there is no plan to implement them any time soon so we shouldn't declare them in math.h.
-rw-r--r--include/math.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/math.h b/include/math.h
index b44738d7..19108795 100644
--- a/include/math.h
+++ b/include/math.h
@@ -399,14 +399,6 @@ float ynf(int, float);
#ifdef _GNU_SOURCE
long double lgammal_r(long double, int*);
-long double j0l(long double);
-long double j1l(long double);
-long double jnl(int, long double);
-
-long double y0l(long double);
-long double y1l(long double);
-long double ynl(int, long double);
-
void sincos(double, double*, double*);
void sincosf(float, float*, float*);
void sincosl(long double, long double*, long double*);