diff options
author | Thomas Wienecke <wienecke.t@gmail.com> | 2014-02-25 20:50:23 +0100 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-25 18:59:22 -0300 |
commit | 8437a4c9724f17824c9043afc27288013d096649 (patch) | |
tree | bc2f50c4ff98ea32760537a781c4e1a7bbcd23f7 /src/ex_getln.c | |
parent | 60280ffa1095cf62e9c4892177c1ccc47db4f8f8 (diff) | |
download | rneovim-8437a4c9724f17824c9043afc27288013d096649.tar.gz rneovim-8437a4c9724f17824c9043afc27288013d096649.tar.bz2 rneovim-8437a4c9724f17824c9043afc27288013d096649.zip |
os_unix: Port mch_FullName and mch_isFullName to libuv.
Basically just delete conditional use of fchdir, since the other called
mch_* functions are already ported to libuv.
Diffstat (limited to 'src/ex_getln.c')
-rw-r--r-- | src/ex_getln.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ex_getln.c b/src/ex_getln.c index 9637b64f2d..83a0fd3dcc 100644 --- a/src/ex_getln.c +++ b/src/ex_getln.c @@ -12,6 +12,7 @@ */ #include "vim.h" +#include "os/os.h" /* * Variables shared between getcmdline(), redrawcmdline() and others. |