diff options
author | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-05-12 11:59:22 +0200 |
---|---|---|
committer | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-05-15 20:46:01 +0200 |
commit | 409cc138f2de121288de3ffb930354b94af5edcd (patch) | |
tree | 31b10a63931ce99eb97dda40b286defc3b140606 /src/nvim/crypt.c | |
parent | e731a5edf879cd0b5eb2a2035f78e2b44fbe75f5 (diff) | |
download | rneovim-409cc138f2de121288de3ffb930354b94af5edcd.tar.gz rneovim-409cc138f2de121288de3ffb930354b94af5edcd.tar.bz2 rneovim-409cc138f2de121288de3ffb930354b94af5edcd.zip |
Introduce nvim namespace: Fix project-local includes.
Prepend 'nvim/' in all project-local (non-system) includes.
Diffstat (limited to 'src/nvim/crypt.c')
-rw-r--r-- | src/nvim/crypt.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/nvim/crypt.c b/src/nvim/crypt.c index 72d4a89c63..e0f49f7e40 100644 --- a/src/nvim/crypt.c +++ b/src/nvim/crypt.c @@ -11,12 +11,12 @@ // Based on blowfish by Bruce Schneier (http://www.schneier.com/blowfish.html) // and sha256 by Christophe Devine. -#include "vim.h" -#include "misc2.h" -#include "blowfish.h" -#include "ex_getln.h" -#include "message.h" -#include "option.h" +#include "nvim/vim.h" +#include "nvim/misc2.h" +#include "nvim/blowfish.h" +#include "nvim/ex_getln.h" +#include "nvim/message.h" +#include "nvim/option.h" static void make_crc_tab(void); |