Add incomplet long double math support to libmingwex.a
This commit is contained in:
19
winsup/mingw/mingwex/math/atanl.c
Normal file
19
winsup/mingw/mingwex/math/atanl.c
Normal file
@@ -0,0 +1,19 @@
|
||||
/*
|
||||
* Written by J.T. Conklin <jtc@netbsd.org>.
|
||||
* Public domain.
|
||||
*
|
||||
* Adapted for `long double' by Ulrich Drepper <drepper@cygnus.com>.
|
||||
*/
|
||||
|
||||
#include <math.h>
|
||||
|
||||
long double
|
||||
atanl (long double x)
|
||||
{
|
||||
long double res;
|
||||
|
||||
asm ("fld1\n\t"
|
||||
"fpatan"
|
||||
: "=t" (res) : "0" (x));
|
||||
return res;
|
||||
}
|
Reference in New Issue
Block a user