shithub: npe

ref: 3ad15c411ee11022d633b655f7b42066a52eb60e
dir: /libnpe/lrint.c/

View raw version
#include <math.h>

long
lrint(double d)
{
	long long l;

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

	return l;
}