Sign in
cobalt
/
cobalt
/
07081467c3d00b04a6a1162e0566a5a8b9cfe2d5
/
.
/
third_party
/
musl
/
src
/
math
/
powerpc64
/
fabs.c
blob: 6123c7535c6d6726cc0cbf311c57521b6900cdd5 [
file
] [
log
] [
blame
]
#include
<math.h>
double
fabs
(
double
x
)
{
__asm__
(
"fabs %0, %1"
:
"=d"
(
x
)
:
"d"
(
x
));
return
x
;
}