Sign in
cobalt
/
cobalt
/
286dd7840608e9cf78bc4a603ff2ec2ee39750c5
/
.
/
src
/
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
;
}