From 4a6b7a471d1f09f41b88509f15db69101253c1f5 Mon Sep 17 00:00:00 2001 From: richinseattle Date: Wed, 26 Jul 2023 22:40:01 -0700 Subject: [PATCH] Include windows support header (for mmap) --- run.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/run.c b/run.c index 733010c..d1e3d2a 100644 --- a/run.c +++ b/run.c @@ -17,6 +17,8 @@ $ ./run #ifndef _WIN32 #include #include +#else +#include "win.h" #endif // ----------------------------------------------------------------------------