From c067e5580b26410eb3130f716f55c4e4d0831d51 Mon Sep 17 00:00:00 2001 From: Thiago de Arruda Date: Mon, 24 Feb 2014 22:17:46 -0300 Subject: Create new OS module This module will contain all functions that perform OS calls such as IO, filesystem access, etc. --- src/window.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/window.c') diff --git a/src/window.c b/src/window.c index 29c82e4086..5256fbd1fa 100644 --- a/src/window.c +++ b/src/window.c @@ -8,6 +8,7 @@ */ #include "vim.h" +#include "os/os.h" static int path_is_url __ARGS((char_u *p)); static void win_init __ARGS((win_T *newp, win_T *oldp, int flags)); -- cgit