From 879e2ac0a540fa1b199e20d47830aa5eea484a4c Mon Sep 17 00:00:00 2001 From: cornet Date: Wed, 22 Apr 2009 05:54:43 +0000 Subject: build with visual studio (dynamic libraries) --- src/elementaryFunctions/acosh/sacoshs.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/elementaryFunctions/acosh/sacoshs.c') diff --git a/src/elementaryFunctions/acosh/sacoshs.c b/src/elementaryFunctions/acosh/sacoshs.c index a9ef9811..d2a9ae53 100644 --- a/src/elementaryFunctions/acosh/sacoshs.c +++ b/src/elementaryFunctions/acosh/sacoshs.c @@ -13,6 +13,13 @@ #include #include "acosh.h" +#ifdef _MSC_VER +float acoshf (float x) +{ + return (float) log(x + sqrt(x * x - 1)); +} +#endif + float sacoshs(float x) { return (acoshf(x)); } -- cgit