From a86b1a129ebedec1d86be2fd06a4976396e7f411 Mon Sep 17 00:00:00 2001 From: James McCoy Date: Thu, 13 Mar 2014 21:26:26 -0400 Subject: 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. --- src/os/mem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/os/mem.c') diff --git a/src/os/mem.c b/src/os/mem.c index 20abd58261..fa93fe8398 100644 --- a/src/os/mem.c +++ b/src/os/mem.c @@ -13,7 +13,7 @@ #include -#include "os.h" +#include "os/os.h" /* * Return total amount of memory available in Kbyte. -- cgit