Add missing include guard to os module

This commit is contained in:
Thiago de Arruda 2014-02-24 22:41:39 -03:00
parent c067e5580b
commit d5f74cf8bb

View File

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