Sign in
mingw
/
mingw-w64
/
518dd33c326f65684e8e938262b2a9ca94804cfb
/
.
/
mingw-w64-crt
/
math
/
atanf.c
blob: 55495fc3b3c1c0e0f71179218d6d9ff859b846e1 [
file
] [
log
] [
blame
]
/*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*
*/
#include
<math.h>
float
atanf
(
float
x
)
{
float
res
;
asm
(
"fld1\n\t"
"fpatan"
:
"=t"
(
res
)
:
"0"
(
x
));
return
res
;
}