Skip to content
Snippets Groups Projects
Commit 314f11d4 authored by Bram Moolenaar's avatar Bram Moolenaar
Browse files

Fix for float values on VMS. (Zoltan Arpadffy)

parent b61f95c3
No related merge requests found
......@@ -22,6 +22,10 @@
# include <time.h> /* for strftime() */
#endif
 
#ifdef VMS
# include <float.h>
#endif
#ifdef MACOS
# include <time.h> /* for time_t */
#endif
......@@ -4807,11 +4811,11 @@ eval6(arg, rettv, evaluate, want_string)
if (f2 == 0.0)
{
if (f1 == 0)
f1 = -0x7fffffffL - 1L; /* similar to NaN */
f1 = -1 * __F_FLT_MAX - 1L; /* similar to NaN */
else if (f1 < 0)
f1 = -0x7fffffffL;
f1 = -1 * __F_FLT_MAX;
else
f1 = 0x7fffffffL;
f1 = __F_FLT_MAX;
}
else
f1 = f1 / f2;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment