We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7f4570b + 4ab2770 commit 70151a9Copy full SHA for 70151a9
src/ansi-c/library/math.c
@@ -2623,7 +2623,7 @@ long double expl(long double x)
2623
return +0.0l;
2624
2625
#if LDBL_MAX_EXP == DBL_MAX_EXP
2626
- return exp(x, y);
+ return exp(x);
2627
#else
2628
// underflow/overflow when the result is not representable in 15 exponent bits
2629
if(x < -16384.0l * M_LN2)
@@ -2821,7 +2821,7 @@ long double logl(long double x)
2821
}
2822
2823
2824
- return logl(x, y);
+ return logl(x);
2825
2826
_Static_assert(
2827
sizeof(long double) % sizeof(int32_t) == 0,
0 commit comments