Fixed more warnings, hopefully prevented Microsoft Vs. C++ 7 not to freak out.

This commit is contained in:
n-a-c-h
2005-07-06 23:34:19 +00:00
parent 80b7020b35
commit 977be369ca
2 changed files with 6 additions and 0 deletions

View File

@@ -28,6 +28,11 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#include <io.h>
#include <stdio.h>
#include <string.h>
#ifndef _MSC_VER
#include <unistd.h>
#else
#include <direct.h>
#endif
#endif
#define StringA "FRAMESKIP"

View File

@@ -31,6 +31,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#include <sys/stat.h>
#include <zlib.h>
#ifdef __WIN32__
#include <direct.h>
#include <io.h>
#define ftruncate chsize
#else