From 409cc138f2de121288de3ffb930354b94af5edcd Mon Sep 17 00:00:00 2001 From: Eliseo Martínez Date: Mon, 12 May 2014 11:59:22 +0200 Subject: Introduce nvim namespace: Fix project-local includes. Prepend 'nvim/' in all project-local (non-system) includes. --- src/nvim/path.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/nvim/path.h') 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 { -- cgit