diff options
author | Kenneth Heafield <kheafiel@cluster01.lti.ece.cmu.local> | 2012-05-27 15:00:41 -0400 |
---|---|---|
committer | Kenneth Heafield <kheafiel@cluster01.lti.ece.cmu.local> | 2012-05-27 15:00:41 -0400 |
commit | ac1c480d92627f50bf97796c5592a6da77e1c591 (patch) | |
tree | 873f2acbd549b4fcbcc9a5f8bf4c84d97194dfd1 /klm/util | |
parent | 425a6300f2ec00a44d3f23cb43c239bec58cf765 (diff) |
Guard unistd.h for windows :-(
Diffstat (limited to 'klm/util')
-rw-r--r-- | klm/util/file.cc | 3 | ||||
-rw-r--r-- | klm/util/mmap.cc | 2 |
2 files changed, 3 insertions, 2 deletions
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 <sys/stat.h> #include <fcntl.h> #include <stdint.h> -#include <unistd.h> #if defined(_WIN32) || defined(_WIN64) #include <windows.h> #include <io.h> +#else +#include <unistd.h> #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 <sys/types.h> #include <sys/stat.h> #include <stdlib.h> -#include <unistd.h> #if defined(_WIN32) || defined(_WIN64) #include <windows.h> #include <io.h> #else +#include <unistd.h> #include <sys/mman.h> #endif |