# HG changeset patch # User John "Elwin" Edwards # Date 1438543524 14400 # Node ID 576cc8154521caba048c8f9280ddbbbcf09925c7 # Parent 7c059ec2a2c7b24651138bc3237b4dc5f4e095f3 srogue: don't try to include unistd.h on Windows. diff -r 7c059ec2a2c7 -r 576cc8154521 srogue/command.c --- a/srogue/command.c Sun Aug 02 12:25:44 2015 -0400 +++ b/srogue/command.c Sun Aug 02 15:25:24 2015 -0400 @@ -23,6 +23,8 @@ #include "rogue.ext" #ifdef __DJGPP__ #include +#elif defined(_WIN32) +#include #else #include #endif