aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/message.c
diff options
context:
space:
mode:
authorHinidu <hinidu@gmail.com>2014-04-12 09:28:46 +0300
committerJustin M. Keyes <justinkz@gmail.com>2014-05-28 13:08:55 -0400
commitb4ca3abc9f6676ea250e42c834716a5f66d8ec30 (patch)
tree5ed04f0ef5e6cb1d59e6d91df420413b791fd23d /src/nvim/message.c
parentef5d9ccefedec12b8628d204a13506e86ddb469c (diff)
downloadrneovim-b4ca3abc9f6676ea250e42c834716a5f66d8ec30.tar.gz
rneovim-b4ca3abc9f6676ea250e42c834716a5f66d8ec30.tar.bz2
rneovim-b4ca3abc9f6676ea250e42c834716a5f66d8ec30.zip
Remove FEAT_FLOAT
Support for floating point variables
Diffstat (limited to 'src/nvim/message.c')
-rw-r--r--src/nvim/message.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/nvim/message.c b/src/nvim/message.c
index be23ac0450..44fbdb6091 100644
--- a/src/nvim/message.c
+++ b/src/nvim/message.c
@@ -13,6 +13,7 @@
#define MESSAGE_FILE /* don't include prototype for smsg() */
#include <string.h>
+#include <math.h>
#include "nvim/vim.h"
#include "nvim/message.h"
@@ -37,10 +38,6 @@
#include "nvim/os/os.h"
#include "nvim/os/event.h"
-#if defined(FEAT_FLOAT)
-# include <math.h>
-#endif
-
static int other_sourcing_name(void);
static char_u *get_emsg_source(void);
static char_u *get_emsg_lnum(void);