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/tempfile.h | |
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/tempfile.h')
-rw-r--r-- | src/nvim/tempfile.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/nvim/tempfile.h b/src/nvim/tempfile.h new file mode 100644 index 0000000000..c030a70eeb --- /dev/null +++ b/src/nvim/tempfile.h @@ -0,0 +1,8 @@ +#ifndef NVIM_TEMPFILE_H +#define NVIM_TEMPFILE_H + +#ifdef INCLUDE_GENERATED_DECLARATIONS +# include "tempfile.h.generated.h" +#endif + +#endif // NVIM_TEMPFILE_H |