diff options
Diffstat (limited to 'src/elementaryFunctions/acosh/sacoshs.c')
-rw-r--r-- | src/elementaryFunctions/acosh/sacoshs.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/elementaryFunctions/acosh/sacoshs.c b/src/elementaryFunctions/acosh/sacoshs.c new file mode 100644 index 00000000..4163cb22 --- /dev/null +++ b/src/elementaryFunctions/acosh/sacoshs.c @@ -0,0 +1,18 @@ +/* +** -*- C -*- +** +** sacoshs.c +** Made by Bruno JOFRET <bruno.jofret@inria.fr> +** +** Started on Fri Jan 5 10:25:44 2007 jofret +** Last update Thu Sep 6 10:43:12 2007 bruno +** +** Copyright INRIA 2007 +*/ + +#include <math.h> +#include "acosh.h" + +float sacoshs(float x) { + return (acosh(x)); +} |