xref: /third_party/musl/src/math/i386/llrintf.c (revision 570af302)
1#include <math.h>
2
3long long llrintf(float x)
4{
5	long long r;
6	__asm__ ("fistpll %0" : "=m"(r) : "t"(x) : "st");
7	return r;
8}
9