- Port to Linux
@ -8,10 +8,11 @@
#include <math.h>
float nintf(float f)
{
double ip, rm;
double ip, rm, dVal;
float fRes;
rm = modf(f,&ip);
dVal = (double)f;
rm = modf(dVal,&ip);
if(rm < .0)rm = -rm;
if(rm > .5)
The note is not visible to the blocked user.