diff options
author | William Speirs <bill.speirs@gmail.com> | 2014-10-16 12:06:54 -0400 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-10-17 11:41:36 +0200 |
commit | 31267a1ae8d670c4b8749fc55b07c01d9285a488 (patch) | |
tree | 678fb6b416aef122cbb9b9affd5f9c702dc2ce03 /libs | |
parent | fda52f05f277720e12aadb4716415ec9bff616a5 (diff) | |
download | yosys-31267a1ae8d670c4b8749fc55b07c01d9285a488.tar.gz yosys-31267a1ae8d670c4b8749fc55b07c01d9285a488.tar.bz2 yosys-31267a1ae8d670c4b8749fc55b07c01d9285a488.zip |
Header changes so it will compile on VS
Diffstat (limited to 'libs')
-rw-r--r-- | libs/ezsat/ezminisat.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libs/ezsat/ezminisat.cc b/libs/ezsat/ezminisat.cc index b996d4a3d..dee82a8df 100644 --- a/libs/ezsat/ezminisat.cc +++ b/libs/ezsat/ezminisat.cc @@ -27,7 +27,10 @@ #include <stdint.h> #include <csignal> #include <cinttypes> -#include <unistd.h> + +#ifndef _WIN32 +# include <unistd.h> +#endif #include "../minisat/Solver.h" #include "../minisat/SimpSolver.h" |