Welcome to mirror list, hosted at ThFree Co, Russian Federation.

s_asinh.c « spu « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f78d5ff2d0ebfbd337958b7e616a93b295530bb1 (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "headers/asinh.h"

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