- Missing include again due to the VS preprocessor.

This commit is contained in:
drfrag666 2018-06-18 14:10:37 +02:00 committed by Christoph Oelckers
parent d8a1d1b89c
commit 9a4ae6eb80

View file

@ -24,6 +24,12 @@
**
*/
#ifdef _MSC_VER
#include <io.h>
#else
#include <unistd.h>
#endif
#include "w_wad.h"
#include "m_png.h"
#include "sbar.h"
@ -32,7 +38,6 @@
#include "bitmap.h"
#ifndef _WIN32
#include <unistd.h>
#define _access(a,b) access(a,b)
#endif