ref: 439f4f0582f31b81cad4bb4c7a388a5f76080544 dir: /lrint.c/
int lrintf(float f) { int i; *((float*)&i) = f + 12582912.0f; return (i & 0x7fffff) - 0x400000; } long lrint(double d) { long long l; *((double*)&l) = d + 6755399441055744.0; return l; }