srogue: don't try to include unistd.h on Windows.

This commit is contained in:
John "Elwin" Edwards 2015-08-02 15:25:24 -04:00
parent 0b952fe136
commit e79714e88d

View file

@ -23,6 +23,8 @@
#include "rogue.ext"
#ifdef __DJGPP__
#include <process.h>
#elif defined(_WIN32)
#include <process.h>
#else
#include <unistd.h>
#endif