diff options
author | b-r-o-c-k <brockmammen@gmail.com> | 2018-03-06 20:38:10 -0600 |
---|---|---|
committer | b-r-o-c-k <brockmammen@gmail.com> | 2018-03-06 20:38:10 -0600 |
commit | c29a82c45f7be0f7ea46311e16a46a94f2173b98 (patch) | |
tree | 1bf4cf7aa4a6dd966169295e37139452102fa93b | |
parent | e0d55f2871784d882d30e7b0d9ffccf9c4dadc3b (diff) | |
download | rneovim-c29a82c45f7be0f7ea46311e16a46a94f2173b98.tar.gz rneovim-c29a82c45f7be0f7ea46311e16a46a94f2173b98.tar.bz2 rneovim-c29a82c45f7be0f7ea46311e16a46a94f2173b98.zip |
build/msvc: Make shell-test fix only apply to MSCV
-rw-r--r-- | test/functional/fixtures/shell-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/fixtures/shell-test.c b/test/functional/fixtures/shell-test.c index cc447d903f..a744d5df46 100644 --- a/test/functional/fixtures/shell-test.c +++ b/test/functional/fixtures/shell-test.c @@ -4,7 +4,7 @@ #include <stdio.h> #include <string.h> #include <stdint.h> -#ifdef WIN32 +#ifdef _MSC_VER #include <Windows.h> #define usleep(usecs) Sleep(usecs/1000) #else |