Commit b2aa245e by Alan Mishchenko

Fixing a clang error related to 'unlink'.

parent ada07311
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment