mirror of https://github.com/YosysHQ/abc.git
Fixing a clang error related to 'unlink'.
This commit is contained in:
parent
ada073110e
commit
b2aa245eaa
|
|
@ -25,7 +25,10 @@
|
|||
#include "sat/bmc/bmc.h"
|
||||
|
||||
#ifdef WIN32
|
||||
#include <process.h>
|
||||
#define unlink _unlink
|
||||
#else
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
ABC_NAMESPACE_IMPL_START
|
||||
|
|
|
|||
Loading…
Reference in New Issue