aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os/server.c
diff options
context:
space:
mode:
authorPavel Platto <hinidu@gmail.com>2014-06-22 13:03:08 +0300
committerNicolas Hillegeer <nicolas@hillegeer.com>2014-07-14 21:14:40 +0200
commit286ce271e730a2e6883c244912b36bca007f6ddc (patch)
treec53fd19698e3eb3327311490b8ad4c6664c2e251 /src/nvim/os/server.c
parent8cfa7b3d15f503ff4fd4fc1df26bca109b31497b (diff)
downloadrneovim-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/server.c')
-rw-r--r--src/nvim/os/server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/os/server.c b/src/nvim/os/server.c
index 2494dfeb9f..2e8934ecfb 100644
--- a/src/nvim/os/server.c
+++ b/src/nvim/os/server.c
@@ -11,7 +11,7 @@
#include "nvim/vim.h"
#include "nvim/memory.h"
#include "nvim/message.h"
-#include "nvim/fileio.h"
+#include "nvim/tempfile.h"
#include "nvim/map.h"
#define MAX_CONNECTIONS 32