XRogue: fix some header includes.

This commit is contained in:
John "Elwin" Edwards 2015-08-13 14:57:26 -04:00
parent 50961af028
commit 7d750a4410
2 changed files with 4 additions and 1 deletions

View file

@ -19,6 +19,7 @@
#include <curses.h>
#include <ctype.h>
#include <string.h>
#include <stdlib.h>
#include <sys/types.h>
#include <signal.h>
#include <fcntl.h>

View file

@ -55,7 +55,6 @@
#if defined(_WIN32)
#include <Windows.h>
#include <Lmcons.h>
#include <process.h>
#include <shlobj.h>
#include <Shlwapi.h>
#undef VOID
@ -82,6 +81,9 @@
#include "rogue.h"
#include "mach_dep.h"
#if defined(_WIN32)
#include <process.h>
#endif
#define READSTAT ((format_error == 0) && (read_error == 0))
#define WRITESTAT (write_error == 0)