diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-24 22:41:39 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-24 22:41:39 -0300 |
commit | d5f74cf8bbfd9b4b3dce756756dd09de98da3458 (patch) | |
tree | 2d6b6bac1927cdf69f7c465a65a03b24dc2db5df | |
parent | c067e5580b26410eb3130f716f55c4e4d0831d51 (diff) | |
download | rneovim-d5f74cf8bbfd9b4b3dce756756dd09de98da3458.tar.gz rneovim-d5f74cf8bbfd9b4b3dce756756dd09de98da3458.tar.bz2 rneovim-d5f74cf8bbfd9b4b3dce756756dd09de98da3458.zip |
Add missing include guard to os module
-rw-r--r-- | src/os/os.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/os/os.h b/src/os/os.h index f344f180df..58d49d36e7 100644 --- a/src/os/os.h +++ b/src/os/os.h @@ -1,4 +1,9 @@ +#ifndef NEOVIM_OS_H +#define NEOVIM_OS_H + #include "../vim.h" long_u mch_total_mem(int special); int mch_chdir(char *path); + +#endif |