Remove DOS line endings.
git-svn-id: svn+ssh://svn.code.sf.net/p/mingw-w64/code/trunk@618 4407c894-4637-0410-b4f5-ada5f102cad1
diff --git a/mingw-w64-crt/math/lroundf.c b/mingw-w64-crt/math/lroundf.c
index e648095..d6475be 100644
--- a/mingw-w64-crt/math/lroundf.c
+++ b/mingw-w64-crt/math/lroundf.c
@@ -1,37 +1,37 @@
-/**
- * This file has no copyright assigned and is placed in the Public Domain.
- * This file is part of the w64 mingw-runtime package.
- * No warranty is given; refer to the file DISCLAIMER within this package.
- */
-#include <math.h>
-#include <limits.h>
-#include <errno.h>
-
-long
-lroundf (float x)
-{
- float res;
-
- if (x >= 0.0F)
- {
- res = ceilf (x);
- if (res - x > 0.5F)
- res -= 1.0F;
- }
- else
- {
- res = ceilf (-x);
- if (res + x > 0.5F)
- res -= 1.0F;
- res = -res;
- }
- if (!isfinite (res)
- || res > (float) LONG_MAX
- || res < (float) LONG_MIN)
- {
- errno = ERANGE;
- /* Undefined behaviour, so we could return anything. */
- /* return res > 0.0F ? LONG_MAX : LONG_MIN; */
- }
- return (long) res;
-}
+/**
+ * This file has no copyright assigned and is placed in the Public Domain.
+ * This file is part of the w64 mingw-runtime package.
+ * No warranty is given; refer to the file DISCLAIMER within this package.
+ */
+#include <math.h>
+#include <limits.h>
+#include <errno.h>
+
+long
+lroundf (float x)
+{
+ float res;
+
+ if (x >= 0.0F)
+ {
+ res = ceilf (x);
+ if (res - x > 0.5F)
+ res -= 1.0F;
+ }
+ else
+ {
+ res = ceilf (-x);
+ if (res + x > 0.5F)
+ res -= 1.0F;
+ res = -res;
+ }
+ if (!isfinite (res)
+ || res > (float) LONG_MAX
+ || res < (float) LONG_MIN)
+ {
+ errno = ERANGE;
+ /* Undefined behaviour, so we could return anything. */
+ /* return res > 0.0F ? LONG_MAX : LONG_MIN; */
+ }
+ return (long) res;
+}