Use include paths relative to src/

As described in Google's style guide, the basis for Neovim's

> All of a project's header files should be listed as descendants of the
> project's source directory without use of UNIX directory shortcuts .
> (the current directory) or .. (the parent directory).

Add src as an include directory to facilitate this.
This commit is contained in:
James McCoy
2014-03-13 21:26:26 -04:00
committed by Thiago de Arruda
parent 046bc5f478
commit a86b1a129e
6 changed files with 12 additions and 11 deletions

View File

@@ -13,8 +13,8 @@
#include <uv.h>
#include "os.h"
#include "../misc2.h"
#include "os/os.h"
#include "misc2.h"
#ifdef HAVE_CRT_EXTERNS_H
#include <crt_externs.h>