diff options
author | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-07-12 19:16:41 +0200 |
---|---|---|
committer | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-07-16 19:05:35 +0200 |
commit | 1710fa43376f4844abe056b3f87aece1845ff89a (patch) | |
tree | 7e25711a7829c27471dad6a15c72abe2b7c712ab /src/nvim/os_unix.h | |
parent | 109c70dc60b763362923549beeef312324fefba4 (diff) | |
download | rneovim-1710fa43376f4844abe056b3f87aece1845ff89a.tar.gz rneovim-1710fa43376f4844abe056b3f87aece1845ff89a.tar.bz2 rneovim-1710fa43376f4844abe056b3f87aece1845ff89a.zip |
vim: move vim_acl_T to types.h
Also include "types.h" in os_unix.h because it declares functions that
return vim_acl_T.
Diffstat (limited to 'src/nvim/os_unix.h')
-rw-r--r-- | src/nvim/os_unix.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/os_unix.h b/src/nvim/os_unix.h index 5610fe68eb..5a3eb84ba4 100644 --- a/src/nvim/os_unix.h +++ b/src/nvim/os_unix.h @@ -1,6 +1,7 @@ #ifndef NVIM_OS_UNIX_H #define NVIM_OS_UNIX_H +#include "nvim/types.h" // for vim_acl_T #include "nvim/os/shell.h" /* Values returned by mch_nodetype() */ |