Introduce nvim namespace: Fix project-local includes.

Prepend 'nvim/' in all project-local (non-system) includes.
This commit is contained in:
Eliseo Martínez
2014-05-12 11:59:22 +02:00
parent e731a5edf8
commit 409cc138f2
134 changed files with 1664 additions and 1664 deletions

View File

@@ -7,11 +7,11 @@
#include <sys/time.h>
#include <unistd.h>
#include "log.h"
#include "misc1.h"
#include "types.h"
#include "os/os.h"
#include "os/time.h"
#include "nvim/log.h"
#include "nvim/misc1.h"
#include "nvim/types.h"
#include "nvim/os/os.h"
#include "nvim/os/time.h"
#define USR_LOG_FILE "$HOME/.nvimlog"