diff options
author | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-05-12 11:59:22 +0200 |
---|---|---|
committer | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-05-15 20:46:01 +0200 |
commit | 409cc138f2de121288de3ffb930354b94af5edcd (patch) | |
tree | 31b10a63931ce99eb97dda40b286defc3b140606 /src/nvim/path.h | |
parent | e731a5edf879cd0b5eb2a2035f78e2b44fbe75f5 (diff) | |
download | rneovim-409cc138f2de121288de3ffb930354b94af5edcd.tar.gz rneovim-409cc138f2de121288de3ffb930354b94af5edcd.tar.bz2 rneovim-409cc138f2de121288de3ffb930354b94af5edcd.zip |
Introduce nvim namespace: Fix project-local includes.
Prepend 'nvim/' in all project-local (non-system) includes.
Diffstat (limited to 'src/nvim/path.h')
-rw-r--r-- | src/nvim/path.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/path.h b/src/nvim/path.h index 51503c3bdd..ac7cddf11d 100644 --- a/src/nvim/path.h +++ b/src/nvim/path.h @@ -1,9 +1,9 @@ #ifndef NEOVIM_PATH_H #define NEOVIM_PATH_H -#include "func_attr.h" -#include "types.h" -#include "garray.h" +#include "nvim/func_attr.h" +#include "nvim/types.h" +#include "nvim/garray.h" /// Return value for the comparison of two files. Also @see path_full_compare. typedef enum file_comparison { |