Skip to content

Commit 9497b02

Browse files
author
Daniel Kroening
authored
Merge pull request #1395 from diffblue/msvc_unistd
Visual Studio doesn't have unistd.h; signal.h isn't needed for the MSVC build
2 parents 58b75cf + 237b31a commit 9497b02

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/solvers/sat/satcheck_minisat2.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,9 @@ Author: Daniel Kroening, [email protected]
1010

1111
#ifndef _MSC_VER
1212
#include <inttypes.h>
13-
#endif
14-
1513
#include <signal.h>
1614
#include <unistd.h>
15+
#endif
1716

1817
#include <cassert>
1918
#include <stack>

0 commit comments

Comments
 (0)