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/job.c | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'src/nvim/os/job.c') diff --git a/src/nvim/os/job.c b/src/nvim/os/job.c index 7940338b70..ac79a5b882 100644 --- a/src/nvim/os/job.c +++ b/src/nvim/os/job.c @@ -3,20 +3,20 @@ #include -#include "os/uv_helpers.h" -#include "os/job.h" -#include "os/job_defs.h" -#include "os/rstream.h" -#include "os/rstream_defs.h" -#include "os/wstream.h" -#include "os/wstream_defs.h" -#include "os/event.h" -#include "os/event_defs.h" -#include "os/time.h" -#include "os/shell.h" -#include "vim.h" -#include "memory.h" -#include "term.h" +#include "nvim/os/uv_helpers.h" +#include "nvim/os/job.h" +#include "nvim/os/job_defs.h" +#include "nvim/os/rstream.h" +#include "nvim/os/rstream_defs.h" +#include "nvim/os/wstream.h" +#include "nvim/os/wstream_defs.h" +#include "nvim/os/event.h" +#include "nvim/os/event_defs.h" +#include "nvim/os/time.h" +#include "nvim/os/shell.h" +#include "nvim/vim.h" +#include "nvim/memory.h" +#include "nvim/term.h" #define EXIT_TIMEOUT 25 #define MAX_RUNNING_JOBS 100 -- cgit