diff options
Diffstat (limited to 'src/c/elementaryFunctions/acosh/dacoshs.c')
-rw-r--r-- | src/c/elementaryFunctions/acosh/dacoshs.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/c/elementaryFunctions/acosh/dacoshs.c b/src/c/elementaryFunctions/acosh/dacoshs.c index a5c13c8b..78825eab 100644 --- a/src/c/elementaryFunctions/acosh/dacoshs.c +++ b/src/c/elementaryFunctions/acosh/dacoshs.c @@ -14,10 +14,10 @@ #include "acosh.h" #ifdef _MSC_VER -double acosh(double x)
-{
- return log(x + sqrt(x * x - 1));
-}
+double acosh(double x) +{ + return log(x + sqrt(x * x - 1)); +} #endif double dacoshs(double x) { |