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

double asinh(double x)
{
  return _asinh(x);
}