remove leftover declarations for removed functions from pthread_impl.h
[musl.git] / src / math / remainderl.c
blob2a13c1d5af138b8b9607e82c724c3d81f4f3ddd7
1 #include <math.h>
2 #include <float.h>
4 #if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
5 long double remainderl(long double x, long double y)
7 return remainder(x, y);
9 #else
10 long double remainderl(long double x, long double y)
12 int q;
13 return remquol(x, y, &q);
15 #endif