Sign in
third-party-mirror
/
mingw-w64
/
518dd33c326f65684e8e938262b2a9ca94804cfb
/
.
/
mingw-w64-crt
/
math
/
rint.c
blob: 6d966ca68802da0fc3a6285187387c52773ea336 [
file
] [
log
] [
blame
]
#include
<math.h>
double
rint
(
double
x
){
double
retval
;
__asm__
(
"frndint;"
:
"=t"
(
retval
)
:
"0"
(
x
));
return
retval
;
}