8 lines
92 B
C
Raw Normal View History

#include <math.h>
#include "headers/rint.h"
double rint(double x)
{
return _rint(x);
}