summaryrefslogtreecommitdiffstats
path: root/newlib/libm/machine/spu/s_rint.c
blob: 482c6264c3a794b7d1e837a826e70241a3be506f (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "headers/rint.h"

double rint(double x)
{
    return _rint(x);
}