Fixing a clang error related to 'unlink'.

This commit is contained in:
Alan Mishchenko 2020-10-09 23:28:23 -07:00
parent ada073110e
commit b2aa245eaa
1 changed files with 3 additions and 0 deletions

View File

@ -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