patch 7.4.1440
Problem:    Can't build on Windows.
Solution:   Change #ifdefs.  Only define isnan when used.
diff --git a/src/eval.c b/src/eval.c
index c3b7bcc..4afcecc 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -10,6 +10,7 @@
 /*
  * eval.c: Expression evaluation.
  */
+#define USING_FLOAT_STUFF
 
 #include "vim.h"