1
0
Fork 0

Fix compilation on visual studio

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3966
This commit is contained in:
Peter Veenstra 2016-02-12 08:06:04 +00:00
parent c96a19e3d9
commit 30db525521

View file

@ -46,6 +46,12 @@
#include "os2.h"
#endif
#if defined(WIN32)
#ifndef S_ISDIR
#define S_ISDIR(m) (((m)&S_IFMT)==S_IFDIR)
#endif
#endif
#if C_DEBUG
Bitu DEBUG_EnableDebugger(void);
#endif