Sign in
third-party-mirror
/
mingw-w64
/
518dd33c326f65684e8e938262b2a9ca94804cfb
/
.
/
mingw-w64-crt
/
math
/
llrintf.c
blob: e4a97590c528ebaf63c8259436619f7788768dfe [
file
] [
log
] [
blame
]
#include
<math.h>
long
long
llrintf
(
float
x
)
{
long
long
retval
;
__asm__ __volatile__ \
(
"fistpll %0"
:
"=m"
(
retval
)
:
"t"
(
x
)
:
"st"
);
\
return
retval
;
}