diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-24 22:17:46 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-24 22:17:46 -0300 |
commit | c067e5580b26410eb3130f716f55c4e4d0831d51 (patch) | |
tree | 491ae7cb6982fa7ccd615a7f3c84736da538b7c3 /src/misc2.c | |
parent | 0f438e42a839d67b1c66ceb2817ae90b0a368c2a (diff) | |
download | rneovim-c067e5580b26410eb3130f716f55c4e4d0831d51.tar.gz rneovim-c067e5580b26410eb3130f716f55c4e4d0831d51.tar.bz2 rneovim-c067e5580b26410eb3130f716f55c4e4d0831d51.zip |
Create new OS module
This module will contain all functions that perform OS calls such as IO,
filesystem access, etc.
Diffstat (limited to 'src/misc2.c')
-rw-r--r-- | src/misc2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/misc2.c b/src/misc2.c index e59ccf6626..da90eedb55 100644 --- a/src/misc2.c +++ b/src/misc2.c @@ -11,6 +11,7 @@ * misc2.c: Various functions. */ #include "vim.h" +#include "os/os.h" static char_u *username = NULL; /* cached result of mch_get_user_name() */ |