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

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

float		satanhs(float x) {
  return (atanh(x));
}