X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fsqrtl.c;h=83a8f80c9984dc7b02e2de6d73f87ed58b566b8b;hb=5fc1487832e16aa2119e735a388d5f36c8c139e2;hp=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391;hpb=b69f695acedd4ce2798ef9ea28d834ceccc789bd;p=musl diff --git a/src/math/sqrtl.c b/src/math/sqrtl.c index e69de29b..83a8f80c 100644 --- a/src/math/sqrtl.c +++ b/src/math/sqrtl.c @@ -0,0 +1,7 @@ +#include + +long double sqrtl(long double x) +{ + /* FIXME: implement in C, this is for LDBL_MANT_DIG == 64 only */ + return sqrt(x); +}