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

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

double	       dtanhs(double x) {
  return (tanh(x));
}