diff options
Diffstat (limited to 'src/elementaryFunctions/tanh/stanhs.c')
-rw-r--r-- | src/elementaryFunctions/tanh/stanhs.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/elementaryFunctions/tanh/stanhs.c b/src/elementaryFunctions/tanh/stanhs.c new file mode 100644 index 00000000..7eaa532e --- /dev/null +++ b/src/elementaryFunctions/tanh/stanhs.c @@ -0,0 +1,17 @@ +/* +** -*- C -*- +** +** stanhs.c +** Made by Bruno JOFRET <bruno.jofret@inria.fr> +** +** Started on Thu Dec 7 11:05:37 2006 jofret +** Last update Mon Jan 29 17:04:50 2007 jofret +** +** Copyright INRIA 2006 +*/ + +#include <math.h> + +float stanhs(float x) { + return (tanh(x)); +} |