Sign in
cobalt
/
cobalt
/
788710a0d7b1b8d8e2340dd5fad5e8783a239862
/
.
/
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
;
}