aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2014-02-24 22:41:39 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2014-02-24 22:41:39 -0300
commitd5f74cf8bbfd9b4b3dce756756dd09de98da3458 (patch)
tree2d6b6bac1927cdf69f7c465a65a03b24dc2db5df
parentc067e5580b26410eb3130f716f55c4e4d0831d51 (diff)
downloadrneovim-d5f74cf8bbfd9b4b3dce756756dd09de98da3458.tar.gz
rneovim-d5f74cf8bbfd9b4b3dce756756dd09de98da3458.tar.bz2
rneovim-d5f74cf8bbfd9b4b3dce756756dd09de98da3458.zip
Add missing include guard to os module
-rw-r--r--src/os/os.h5
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