From 7c4f1ed03063a3e4e514727ddecfef213a683959 Mon Sep 17 00:00:00 2001 From: cjihrig Date: Thu, 16 Jan 2020 20:24:04 -0500 Subject: [PATCH] deps: uvwasi: cherry-pick 941bedf MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Original commit message: https://github.com/cjihrig/uvwasi/commit/20fd9e2 was accidentally reverted in https://github.com/cjihrig/uvwasi/pull/73. This commit relands it. PR-URL: https://github.com/nodejs/node/pull/31363 Reviewed-By: David Carlier Reviewed-By: Tobias Nießen Reviewed-By: Rich Trott Reviewed-By: Richard Lau --- deps/uvwasi/src/uvwasi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/deps/uvwasi/src/uvwasi.c b/deps/uvwasi/src/uvwasi.c index 4da8323ac17abf..e5d210657ce8b1 100644 --- a/deps/uvwasi/src/uvwasi.c +++ b/deps/uvwasi/src/uvwasi.c @@ -9,6 +9,7 @@ # include # define IS_SLASH(c) ((c) == '/') #else +# include # define IS_SLASH(c) ((c) == '/' || (c) == '\\') #endif /* _WIN32 */