From 90f41a2d1f9710bc64ceb7fc400951e5b50f8688 Mon Sep 17 00:00:00 2001 From: cjihrig Date: Wed, 15 Jan 2020 22:28:42 -0500 Subject: [PATCH] reland "fix '_lseeki64' undefined compiler warning" https://github.com/cjihrig/uvwasi/commit/20fd9e2 was accidentally reverted in https://github.com/cjihrig/uvwasi/pull/73. This commit relands it. --- src/uvwasi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/uvwasi.c b/src/uvwasi.c index 4da8323..e5d2106 100644 --- a/src/uvwasi.c +++ b/src/uvwasi.c @@ -9,6 +9,7 @@ # include # define IS_SLASH(c) ((c) == '/') #else +# include # define IS_SLASH(c) ((c) == '/' || (c) == '\\') #endif /* _WIN32 */