diff options
author | John Schmidt <john.schmidt.h@gmail.com> | 2014-03-31 00:51:46 +0200 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-01 08:08:07 -0300 |
commit | 7464b07c225629b3969cfdcd135f4ac1fa0b7a0b (patch) | |
tree | 0a386d6e94b8ecc414d15841364c22b4c9efdcc1 /src/path.h | |
parent | 703490359118ecb2f66d3529b57771fd3dcff5b7 (diff) | |
download | rneovim-7464b07c225629b3969cfdcd135f4ac1fa0b7a0b.tar.gz rneovim-7464b07c225629b3969cfdcd135f4ac1fa0b7a0b.tar.bz2 rneovim-7464b07c225629b3969cfdcd135f4ac1fa0b7a0b.zip |
Move mch_expandpath from os_unix.c
Diffstat (limited to 'src/path.h')
-rw-r--r-- | src/path.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/path.h b/src/path.h index 07bd4d5588..c65367289c 100644 --- a/src/path.h +++ b/src/path.h @@ -34,4 +34,5 @@ char_u *fix_fname(char_u *fname); int after_pathsep(char_u *b, char_u *p); int same_directory(char_u *f1, char_u *f2); int pathcmp(const char *p, const char *q, int maxlen); +int mch_expandpath(garray_T *gap, char_u *path, int flags); #endif |