Sign in
cobalt
/
cobalt
/
3cd5432aaed8f14f27f66ade1b51aa71df939492
/
.
/
third_party
/
musl
/
src
/
math
/
s390x
/
rintl.c
blob: bae53185a27c700e074e8d21c782dab71cdaff99 [
file
] [
log
] [
blame
]
#include
<math.h>
#if defined(__HTM__) || __ARCH__ >= 9
long
double
rintl
(
long
double
x
)
{
__asm__
(
"fixbr %0, 0, %1"
:
"=f"
(
x
)
:
"f"
(
x
));
return
x
;
}
#else
#include
"../rintl.c"
#endif