Sign in
third-party-mirror
/
mingw-w64
/
518dd33c326f65684e8e938262b2a9ca94804cfb
/
.
/
mingw-w64-crt
/
math
/
fabs.c
blob: a05cc4a1f568237e765b9699dfaff59ec61c8a80 [
file
] [
log
] [
blame
]
#include
<math.h>
double
fabs
(
double
x
)
{
double
res
;
asm
(
"fabs;"
:
"=t"
(
res
)
:
"0"
(
x
));
return
res
;
}