Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
math
/
i386
/
fabsl.c
blob: cc1c9ed9c73ff1d555accc5d1df2db2a146ad08b [
file
] [
log
] [
blame
]
#include
<math.h>
long
double
fabsl
(
long
double
x
)
{
__asm__
(
"fabs"
:
"+t"
(
x
));
return
x
;
}