summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/atanh/datanhs.c
blob: c6d80c77b81a9cc9b3d9c721ff2eea191f2163e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
**  -*- C -*-
**
** datanhs.c
** Made by  Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on  Thu Dec  7 12:02:41 2006 jofret
** Last update Thu Sep  6 15:12:05 2007 bruno
**
** Copyright INRIA 2006
*/

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

double	       datanhs(double x) {
  return (atanh(x));
}