diff options
author | James McCoy <jamessan@jamessan.com> | 2020-12-15 07:35:06 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2020-12-15 07:43:44 -0500 |
commit | 6c2eb903a9eb74d2b45fc931a555f5fed8176e90 (patch) | |
tree | d70267b3592620a9a6485bc82f427804fd2077d0 /src/nvim/os/users.c | |
parent | 82100a6bdb42cec30060d6c991ab78fd2331fa31 (diff) | |
download | rneovim-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/os/users.c')
-rw-r--r-- | src/nvim/os/users.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/os/users.c b/src/nvim/os/users.c index 9374693550..16e17a9c60 100644 --- a/src/nvim/os/users.c +++ b/src/nvim/os/users.c @@ -5,6 +5,8 @@ #include <uv.h> +#include "auto/config.h" + #include "nvim/ascii.h" #include "nvim/os/os.h" #include "nvim/garray.h" |