3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 18:31:49 +00:00

add macro for _Exit under WINDOWS

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-10-16 09:14:10 -07:00
parent b36f512879
commit 256c9d76d3
2 changed files with 3 additions and 0 deletions

View file

@ -216,6 +216,8 @@ struct nnf::imp {
m_cache_result(cache_res),
m_spos(spos) {
}
//frame():m_curr(*(ast_manager*)(nullptr)) {
//}
};
// There are four caches:

View file

@ -54,6 +54,7 @@ static_assert(sizeof(int64) == 8, "64 bits");
#ifdef _WINDOWS
#define SSCANF sscanf_s
#define SPRINTF sprintf_s
#define _Exit exit
#else
#define SSCANF sscanf
#define SPRINTF sprintf