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

@@ -26,7 +26,7 @@
/*
An example:
#include "khash.h"
#include "nvim/khash.h"
KHASH_MAP_INIT_INT(32, char)
int main() {
int ret, is_missing;
@@ -129,8 +129,8 @@ int main() {
#include <string.h>
#include <limits.h>
#include "func_attr.h"
#include "memory.h"
#include "nvim/func_attr.h"
#include "nvim/memory.h"
/* compiler specific configuration */