srogue: another unistd.h which should not be included on Windows.

This commit is contained in:
John "Elwin" Edwards 2015-08-03 06:30:09 -04:00
parent e79714e88d
commit 2c4ad7e941

View file

@ -14,15 +14,18 @@
* See the file LICENSE.TXT for full copyright and licensing information.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <ctype.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <signal.h>
#include <errno.h>
#if !defined(_WIN32)
#include <unistd.h>
#endif
#include "rogue.h"
#include "rogue.ext"