shithub: npe

ref: 7944a8444f40c267b9f622bfbe7f835115f8155a
dir: /libnpe/lrint.c/

View raw version
#include <math.h>

long
lrint(double d)
{
	long long l;

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

	return l;
}