zig/libc/musl/src/math/ldexpl.c
Andrew Kelley 62486c35a4
ability to build musl from source
bundles musl 1.1.21

See #514
2019-03-12 17:32:32 -04:00

7 lines
87 B
C

#include <math.h>
long double ldexpl(long double x, int n)
{
return scalbnl(x, n);
}