shithub: npe

ref: 2b93fd2cd792cfc97b836c991d01a76f00f7ef7e
dir: /libnpe/lrint.c/

View raw version
#include <math.h>

long
lrint(double d)
{
	long long l;

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

	return l;
}