# HG changeset patch # User John "Elwin" Edwards # Date 1438597809 14400 # Node ID 85bd398cb96df47f21bcf212a39a25a510ad0938 # Parent 576cc8154521caba048c8f9280ddbbbcf09925c7 srogue: another unistd.h which should not be included on Windows. diff -r 576cc8154521 -r 85bd398cb96d srogue/save.c --- a/srogue/save.c Sun Aug 02 15:25:24 2015 -0400 +++ b/srogue/save.c Mon Aug 03 06:30:09 2015 -0400 @@ -14,15 +14,18 @@ * See the file LICENSE.TXT for full copyright and licensing information. */ +#include #include #include -#include #include #include #include #include #include #include +#if !defined(_WIN32) +#include +#endif #include "rogue.h" #include "rogue.ext"