From d5f74cf8bbfd9b4b3dce756756dd09de98da3458 Mon Sep 17 00:00:00 2001 From: Thiago de Arruda Date: Mon, 24 Feb 2014 22:41:39 -0300 Subject: Add missing include guard to os module --- src/os/os.h | 5 +++++ 1 file changed, 5 insertions(+) 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 -- cgit