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

float tanhf(float x)
{
  return _tanhf(x);
}