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

float expm1f(float vx)
{
  return _expm1f(vx);
}