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


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

double	       dacoshs(double x) {
  return (acosh(x));
}