shithub: npe

ref: 13c0e712ae7d999f8df7f335cb6eaf7e48a3feb9
dir: /libnpe/lrint.c/

View raw version
#include <math.h>

long
lrint(double d)
{
	long long l;

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

	return l;
}