summaryrefslogtreecommitdiff
path: root/src/message.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-02-27 20:14:15 +0100
committerBram Moolenaar <Bram@vim.org>2016-02-27 20:14:15 +0100
commit136f29a91dbafce424e31a4af133155f997e8f78 (patch)
treec8f62de847e195719732366ec05df2f21f74f000 /src/message.c
parente98991b8cfaf29016d14b8ec437d3dedfc0a5eb7 (diff)
downloadvim-git-136f29a91dbafce424e31a4af133155f997e8f78.tar.gz
patch 7.4.1437v7.4.1437
Problem: Old system doesn't have isinf() and NAN. (Ben Fritz) Solution: Adjust #ifdefs. Detect isnan() and isinf() functions with configure. Use a replacement when missing. (Kazunobu Kuriyama)
Diffstat (limited to 'src/message.c')
-rw-r--r--src/message.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/message.c b/src/message.c
index 6c9dd646c..689a79cd4 100644
--- a/src/message.c
+++ b/src/message.c
@@ -15,10 +15,6 @@
#include "vim.h"
-#if defined(FEAT_FLOAT) && defined(HAVE_MATH_H)
-# include <math.h>
-#endif
-
static int other_sourcing_name(void);
static char_u *get_emsg_source(void);
static char_u *get_emsg_lnum(void);