Sign in
third-party-mirror
/
mingw-w64
/
7cdb53961187ee6d1a487af1d45951247c6ef66a
/
.
/
mingw-w64-crt
/
math
/
rintf.c
blob: 9bcbf97144399ebb0de40cb8df44573c89e6dbe5 [
file
] [
log
] [
blame
]
#include
<math.h>
float
rintf
(
float
x
){
float
retval
;
__asm__
(
"frndint;"
:
"=t"
(
retval
)
:
"0"
(
x
));
return
retval
;
}