From 046bc5f478d199e838ddcce621d625e7df45adf5 Mon Sep 17 00:00:00 2001 From: James McCoy Date: Thu, 13 Mar 2014 21:21:17 -0400 Subject: [PATCH] Adapt include guards to the style guide --- src/file_search.h | 6 +++--- src/os/os.h | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/file_search.h b/src/file_search.h index 32ec4f5a62..13c09a122d 100644 --- a/src/file_search.h +++ b/src/file_search.h @@ -1,5 +1,5 @@ -#ifndef NEOVIM_FIND_FILE_H -#define NEOVIM_FIND_FILE_H +#ifndef NEOVIM_FILE_SEARCH_H +#define NEOVIM_FILE_SEARCH_H void *vim_findfile_init(char_u *path, char_u *filename, char_u * stopdirs, int level, int free_visited, @@ -20,4 +20,4 @@ char_u *find_file_in_path_option(char_u *ptr, int len, int options, int find_what, char_u *rel_fname, char_u *suffixes); -#endif /* NEOVIM_FIND_FILE_H */ +#endif /* NEOVIM_FILE_SEARCH_H */ diff --git a/src/os/os.h b/src/os/os.h index 9ed5379e34..eefa015a33 100644 --- a/src/os/os.h +++ b/src/os/os.h @@ -1,5 +1,5 @@ -#ifndef NEOVIM_OS_H -#define NEOVIM_OS_H +#ifndef NEOVIM_OS_OS_H +#define NEOVIM_OS_OS_H #include "../vim.h"