From 6c2eb903a9eb74d2b45fc931a555f5fed8176e90 Mon Sep 17 00:00:00 2001 From: James McCoy Date: Tue, 15 Dec 2020 07:35:06 -0500 Subject: fix: Include auto/config.h before HAVE_* preprocessor checks Closes #13533 --- src/nvim/os/lang.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/nvim/os/lang.c') diff --git a/src/nvim/os/lang.c b/src/nvim/os/lang.c index 603191a0ff..b63faacaae 100644 --- a/src/nvim/os/lang.c +++ b/src/nvim/os/lang.c @@ -8,9 +8,12 @@ # undef Boolean #endif +#include "auto/config.h" + #ifdef HAVE_LOCALE_H # include #endif + #include "nvim/os/lang.h" #include "nvim/os/os.h" -- cgit