diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2014-09-12 22:07:25 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2014-09-12 22:07:25 +0000 |
commit | fa96c1defe6a1a3182c17bb4b09b19d551dc027b (patch) | |
tree | b75f7e63538bc2fdd80c432dc48dd784c4216900 /lib/libm/arch | |
parent | d43a94c7b29958481b667b3b4c25ae9acbac39e2 (diff) |
Provide a sparc64 version of sqrtl(3) that simply calls _Qp_sqrt.
The generic sqrtl(3) is not nearly accurate enough for quad-precision
floating point.
Diffstat (limited to 'lib/libm/arch')
-rw-r--r-- | lib/libm/arch/sparc64/e_sqrtl.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/libm/arch/sparc64/e_sqrtl.c b/lib/libm/arch/sparc64/e_sqrtl.c new file mode 100644 index 00000000000..95a2a4f043f --- /dev/null +++ b/lib/libm/arch/sparc64/e_sqrtl.c @@ -0,0 +1,29 @@ +/* $OpenBSD: e_sqrtl.c,v 1.1 2014/09/12 22:07:24 kettenis Exp $ */ +/* + * Copyright (c) 2014 Mark Kettenis + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#include <math.h> + +extern void _Qp_sqrt(long double *, long double *); + +long double +sqrtl(long double x) +{ + long double y; + + _Qp_sqrt(&y, &x); + return y; +} |