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

double trunc(double x)
{
    return _trunc(x);
}