aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/eval.c
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2020-12-15 07:35:06 -0500
committerJames McCoy <jamessan@jamessan.com>2020-12-15 07:43:44 -0500
commit6c2eb903a9eb74d2b45fc931a555f5fed8176e90 (patch)
treed70267b3592620a9a6485bc82f427804fd2077d0 /src/nvim/eval.c
parent82100a6bdb42cec30060d6c991ab78fd2331fa31 (diff)
downloadrneovim-6c2eb903a9eb74d2b45fc931a555f5fed8176e90.tar.gz
rneovim-6c2eb903a9eb74d2b45fc931a555f5fed8176e90.tar.bz2
rneovim-6c2eb903a9eb74d2b45fc931a555f5fed8176e90.zip
fix: Include auto/config.h before HAVE_* preprocessor checks
Closes #13533
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r--src/nvim/eval.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c
index fa037b59d7..a7a860ba72 100644
--- a/src/nvim/eval.c
+++ b/src/nvim/eval.c
@@ -7,6 +7,8 @@
#include <math.h>
+#include "auto/config.h"
+
#ifdef HAVE_LOCALE_H
# include <locale.h>
#endif