diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-17 16:11:23 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-18 16:12:00 -0300 |
commit | 913e92324adafe77eeeeefb42033fa06053ffe4c (patch) | |
tree | e741ed7ef6f09ea5f0d3425504201807d5f1a1cf /src/os/rstream.h | |
parent | d31d3dda3dd1f7a18cca4c99a33cee26c62e57af (diff) | |
download | rneovim-913e92324adafe77eeeeefb42033fa06053ffe4c.tar.gz rneovim-913e92324adafe77eeeeefb42033fa06053ffe4c.tar.bz2 rneovim-913e92324adafe77eeeeefb42033fa06053ffe4c.zip |
Extract writing boilerplate into wstream.c module
Diffstat (limited to 'src/os/rstream.h')
-rw-r--r-- | src/os/rstream.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/os/rstream.h b/src/os/rstream.h index 2ca85bdf23..4678889238 100644 --- a/src/os/rstream.h +++ b/src/os/rstream.h @@ -36,12 +36,6 @@ void rstream_free(RStream *rstream); /// @param stream The new `uv_stream_t` instance void rstream_set_stream(RStream *rstream, uv_stream_t *stream); -/// Sets the underlying `uv_file_t` instance -/// -/// @param rstream The `RStream` instance -/// @param stream The new `uv_stream_t` instance -void rstream_set_stream(RStream *rstream, uv_stream_t *stream); - /// Sets the underlying file descriptor that will be read from. Only pipes /// and regular files are supported for now. /// |