Sign in
third-party-mirror
/
mingw-w64
/
7cdb53961187ee6d1a487af1d45951247c6ef66a
/
.
/
mingw-w64-crt
/
math
/
fabsf.c
blob: 0e5f1d7151d4073ba830c6427f37c23feb89caea [
file
] [
log
] [
blame
]
float
fabsf
(
float
x
)
{
float
res
;
asm
(
"fabs;"
:
"=t"
(
res
)
:
"0"
(
x
));
return
res
;
}