From 26b77d7593b5ee0792b6b556f5569ea4227c2b02 Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Thu, 16 May 2019 12:18:48 +0530 Subject: convert to unix format --- src/c/elementaryFunctions/acosh/sacoshs.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/c/elementaryFunctions/acosh/sacoshs.c') diff --git a/src/c/elementaryFunctions/acosh/sacoshs.c b/src/c/elementaryFunctions/acosh/sacoshs.c index d2a9ae53..875897d1 100644 --- a/src/c/elementaryFunctions/acosh/sacoshs.c +++ b/src/c/elementaryFunctions/acosh/sacoshs.c @@ -14,11 +14,11 @@ #include "acosh.h" #ifdef _MSC_VER -float acoshf (float x) -{ - return (float) log(x + sqrt(x * x - 1)); -} -#endif +float acoshf (float x) +{ + return (float) log(x + sqrt(x * x - 1)); +} +#endif float sacoshs(float x) { return (acoshf(x)); -- cgit