From 248e9464d6ccf1309869ca7f23f7e7ee864555b2 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 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. --- 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 */