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/os/uv_helpers.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/nvim/os/uv_helpers.c') diff --git a/src/nvim/os/uv_helpers.c b/src/nvim/os/uv_helpers.c index 62b021de5e..f8371c04c2 100644 --- a/src/nvim/os/uv_helpers.c +++ b/src/nvim/os/uv_helpers.c @@ -1,8 +1,8 @@ #include -#include "os/uv_helpers.h" -#include "vim.h" -#include "memory.h" +#include "nvim/os/uv_helpers.h" +#include "nvim/vim.h" +#include "nvim/memory.h" /// Common structure that will always be assigned to the `data` field of /// libuv handles. It has fields for many types of pointers, and allow a single -- cgit