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

long int lround(double x)
{
    return _lround(x);
}