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

double expm1(double x)
{
  return _expm1(x);
}