Sign in
third-party-mirror
/
mingw-w64
/
518dd33c326f65684e8e938262b2a9ca94804cfb
/
.
/
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
;
}