Make tiio_tif.cpp use io.h instead of unistd.h in Visual Studio

This commit is contained in:
kusano 2016-03-24 04:04:53 +09:00
parent 3f512259eb
commit 6139acbd31

View file

@ -5,7 +5,11 @@
#endif
#define IS_TIFF_MAIN
#if _WIN32
#include <io.h>
#else
#include <unistd.h>
#endif
#include "tiio.h"
#include "tpixel.h"