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

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

float		stanhs(float x) {
  return (tanh(x));
}