summaryrefslogtreecommitdiffstats
path: root/newlib/libm/machine/spu/w_sinh.c
blob: 0077296a63997f6e39d5a801ac05dd944e3106d0 (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "headers/sinh.h"

double sinh(double x)
{
  return _sinh(x);
}