shithub: npe

ref: 481982eca1360fc710e240f6b7757572a1cf8c74
dir: /libnpe/lrint.c/

View raw version
#include <math.h>

long
lrint(double d)
{
	long long l;

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

	return l;
}