diff options
author | George Zhao <zhaozg@gmail.com> | 2018-01-17 19:41:16 +0800 |
---|---|---|
committer | George Zhao <zhaozg@gmail.com> | 2018-01-18 21:30:05 +0800 |
commit | 15334dcd896812d01f81f7959a51a4c4f6929195 (patch) | |
tree | b96c246e2a5b2dad5a2a7f3b7cf212795b3e2217 | |
parent | 12acf0f7a76160e33bb84876121d3a63dde3c252 (diff) | |
download | rneovim-15334dcd896812d01f81f7959a51a4c4f6929195.tar.gz rneovim-15334dcd896812d01f81f7959a51a4c4f6929195.tar.bz2 rneovim-15334dcd896812d01f81f7959a51a4c4f6929195.zip |
Fix warning unused static function
-rw-r--r-- | test/functional/fixtures/tty-test.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/fixtures/tty-test.c b/test/functional/fixtures/tty-test.c index 9c42ca28d0..4f0858acdb 100644 --- a/test/functional/fixtures/tty-test.c +++ b/test/functional/fixtures/tty-test.c @@ -41,6 +41,7 @@ static void walk_cb(uv_handle_t *handle, void *arg) } } +#ifndef WIN32 static void sig_handler(int signum) { switch (signum) { @@ -57,6 +58,7 @@ static void sig_handler(int signum) return; } } +#endif #ifdef WIN32 static void sigwinch_cb(uv_signal_t *handle, int signum) |