shithub: npe

ref: 42afe9c1c3c65fe1e1be697f4dd8f512a0b2b8b5
dir: /libnpe/lrint.c/

View raw version
#include <math.h>

long
lrint(double d)
{
	long long l;

	*((double*)&l) = d + 6755399441055744.0;

	return l;
}