Fix compile error caused by unistd.h not existing on Windows.

This commit is contained in:
Peter Powell 2012-05-23 13:24:52 +01:00
parent f55c5be381
commit 9631805345

View File

@ -55,7 +55,9 @@
#include <cstring>
#include <climits>
#include <cstdio>
#ifndef WIN32
#include <unistd.h>
#endif
#include <sstream>
#include <string>