summaryrefslogtreecommitdiffstats
path: root/newlib/libm/machine/spu/s_round.c
blob: 7138c844782d415bc06ada0b08628889c4ae74c0 (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "headers/round.h"

double round(double x)
{
    return _round(x);
}