From e79714e88d7f6c0d026c6a369bdff597cc1ee96d Mon Sep 17 00:00:00 2001 From: "John \"Elwin\" Edwards" Date: Sun, 2 Aug 2015 15:25:24 -0400 Subject: [PATCH] srogue: don't try to include unistd.h on Windows. --- srogue/command.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/srogue/command.c b/srogue/command.c index 71a3007..bd7c641 100644 --- a/srogue/command.c +++ b/srogue/command.c @@ -23,6 +23,8 @@ #include "rogue.ext" #ifdef __DJGPP__ #include +#elif defined(_WIN32) +#include #else #include #endif