From ff497ae4fa2e96f3b0970647029082764b890acd Mon Sep 17 00:00:00 2001 From: Kenneth Heafield Date: Sun, 27 May 2012 15:00:41 -0400 Subject: Guard unistd.h for windows :-( --- klm/util/file.cc | 3 ++- klm/util/mmap.cc | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'klm') diff --git a/klm/util/file.cc b/klm/util/file.cc index 1bd056fc..6a3885a7 100644 --- a/klm/util/file.cc +++ b/klm/util/file.cc @@ -10,11 +10,12 @@ #include #include #include -#include #if defined(_WIN32) || defined(_WIN64) #include #include +#else +#include #endif namespace util { diff --git a/klm/util/mmap.cc b/klm/util/mmap.cc index e0d2570b..576fd4cc 100644 --- a/klm/util/mmap.cc +++ b/klm/util/mmap.cc @@ -14,12 +14,12 @@ #include #include #include -#include #if defined(_WIN32) || defined(_WIN64) #include #include #else +#include #include #endif -- cgit v1.2.3