Adapt include guards to the style guide

This commit is contained in:
James McCoy 2014-03-13 21:21:17 -04:00 committed by Thiago de Arruda
parent 7c51374a82
commit 046bc5f478
2 changed files with 5 additions and 5 deletions

View File

@ -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 */

View File

@ -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"