diff options
author | Pavel Platto <hinidu@gmail.com> | 2014-06-22 13:03:08 +0300 |
---|---|---|
committer | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-07-14 21:14:40 +0200 |
commit | 286ce271e730a2e6883c244912b36bca007f6ddc (patch) | |
tree | c53fd19698e3eb3327311490b8ad4c6664c2e251 /src/nvim/os_unix.c | |
parent | 8cfa7b3d15f503ff4fd4fc1df26bca109b31497b (diff) | |
download | rneovim-286ce271e730a2e6883c244912b36bca007f6ddc.tar.gz rneovim-286ce271e730a2e6883c244912b36bca007f6ddc.tar.bz2 rneovim-286ce271e730a2e6883c244912b36bca007f6ddc.zip |
Extract `tempfile` module from fileio
Though this module is relatively small it has very clear boundaries.
The last argument for extracting `tempfile` was the errors which I got
when I was writing unittests for it: `cimport './src/nvim/fileio.h'`
does not work for some reason.
Diffstat (limited to 'src/nvim/os_unix.c')
-rw-r--r-- | src/nvim/os_unix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c index 239d7d81db..4a0fbf5c18 100644 --- a/src/nvim/os_unix.c +++ b/src/nvim/os_unix.c @@ -52,6 +52,7 @@ #include "nvim/screen.h" #include "nvim/strings.h" #include "nvim/syntax.h" +#include "nvim/tempfile.h" #include "nvim/term.h" #include "nvim/ui.h" #include "nvim/os/os.h" |