summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/asinh/dasinhs.c
blob: 1d55e721cdd861c6715f43bca1684bf759338b94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
**  -*- C -*-
**
** dasinhs.c
** Made by  Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on  Fri Jan  5 10:26:21 2007 jofret
** Last update Thu Sep  6 11:21:22 2007 bruno
**
** Copyright INRIA 2007
*/


#include <math.h>
#include "asinh.h"

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