From a6e5fe5da63ed2dd8db74504075abacd2d557754 Mon Sep 17 00:00:00 2001 From: jofret Date: Tue, 11 Sep 2007 16:02:09 +0000 Subject: End of prototyping all elementary functions. Just need some code (wait for an internship). --- src/elementaryFunctions/acosh/dacoshs.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/elementaryFunctions/acosh/dacoshs.c (limited to 'src/elementaryFunctions/acosh/dacoshs.c') diff --git a/src/elementaryFunctions/acosh/dacoshs.c b/src/elementaryFunctions/acosh/dacoshs.c new file mode 100644 index 00000000..3d60f07e --- /dev/null +++ b/src/elementaryFunctions/acosh/dacoshs.c @@ -0,0 +1,19 @@ +/* +** -*- C -*- +** +** dacoshs.c +** Made by Bruno JOFRET +** +** Started on Fri Jan 5 10:26:21 2007 jofret +** Last update Thu Sep 6 10:43:39 2007 bruno +** +** Copyright INRIA 2007 +*/ + + +#include +#include "acosh.h" + +double dacoshs(double x) { + return (acosh(x)); +} -- cgit