bump requisite _MSC_VER to <=1600 for fseeko/ftello hack

This commit is contained in:
Josh Coalson
2007-01-31 05:37:20 +00:00
parent e3ec2ad59e
commit 37d9fb1a89
9 changed files with 9 additions and 9 deletions

View File

@@ -26,7 +26,7 @@
#if defined _MSC_VER || defined __MINGW32__
#include <sys/utime.h> /* for utime() */
#include <io.h> /* for chmod() */
#if _MSC_VER <= 1200 /* @@@ [2G limit] */
#if _MSC_VER <= 1600 /* @@@ [2G limit] */
#define fseeko fseek
#define ftello ftell
#endif