shithub: npe

ref: fadb98dc10ea98482c48c8daeb6b5cf840ef47bd
dir: /libnpe/lrintf.c/

View raw version
#include <math.h>

int
lrintf(float f)
{
	int i;

	*((float*)&i) = f + 12582912.0f;

	return (i & 0x7fffff) - 0x400000;
}