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

long long int llrint(double x)
{
    return _llrint(x);
}