diff options
author | James McCoy <vega.james@gmail.com> | 2014-03-13 21:26:26 -0400 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-14 21:54:32 -0300 |
commit | a86b1a129ebedec1d86be2fd06a4976396e7f411 (patch) | |
tree | 89a1b2e20c7a3f33b2f536dc586220dc453ffd98 /src/os/fs.c | |
parent | 046bc5f478d199e838ddcce621d625e7df45adf5 (diff) | |
download | rneovim-a86b1a129ebedec1d86be2fd06a4976396e7f411.tar.gz rneovim-a86b1a129ebedec1d86be2fd06a4976396e7f411.tar.bz2 rneovim-a86b1a129ebedec1d86be2fd06a4976396e7f411.zip |
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.
Diffstat (limited to 'src/os/fs.c')
-rw-r--r-- | src/os/fs.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/os/fs.c b/src/os/fs.c index ee7424d745..e8525cb279 100644 --- a/src/os/fs.c +++ b/src/os/fs.c @@ -13,10 +13,10 @@ #include <uv.h> -#include "os.h" -#include "../message.h" -#include "../misc1.h" -#include "../misc2.h" +#include "os/os.h" +#include "message.h" +#include "misc1.h" +#include "misc2.h" int mch_chdir(char *path) { if (p_verbose >= 5) { |