diff options
author | Brandon Coleman <metrix1978@gmail.com> | 2014-06-22 20:46:34 -0500 |
---|---|---|
committer | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-07-09 00:18:19 +0200 |
commit | bf219e1442df06268575853ec6d150e0d09f737a (patch) | |
tree | 03d6e1a09a7123c8438ec9858a37c34da9a509d5 /src/nvim/ex_cmds2.c | |
parent | b18ca14ef8f440ed36fbd68dcb4f31541c290050 (diff) | |
download | rneovim-bf219e1442df06268575853ec6d150e0d09f737a.tar.gz rneovim-bf219e1442df06268575853ec6d150e0d09f737a.tar.bz2 rneovim-bf219e1442df06268575853ec6d150e0d09f737a.zip |
move <inttypes.h> include out of vim.h
Diffstat (limited to 'src/nvim/ex_cmds2.c')
-rw-r--r-- | src/nvim/ex_cmds2.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds2.c b/src/nvim/ex_cmds2.c index ea027ba225..9b24ef2329 100644 --- a/src/nvim/ex_cmds2.c +++ b/src/nvim/ex_cmds2.c @@ -10,8 +10,9 @@ * ex_cmds2.c: some more functions for command line commands */ -#include <string.h> +#include <inttypes.h> #include <stdbool.h> +#include <string.h> #include "nvim/vim.h" #include "nvim/ascii.h" |