summaryrefslogtreecommitdiffstats
path: root/newlib/libm/machine/spu/headers/tanh.h
blob: 03d29dc8de2c78623872babdfe574c058e1fb9a7 (plain)
1
2
3
4
5
6
#include "headers/tanhd2.h"

static __inline double _tanh(double x)
{
  return spu_extract(_tanhd2(spu_promote(x, 0)), 0);
}