mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 10:25:18 +00:00
fix break in configure
This commit is contained in:
parent
ea55bd495f
commit
16a69e750a
|
@ -130,7 +130,7 @@ extern "C" {
|
|||
Z3_CATCH_RETURN(0.0);
|
||||
}
|
||||
|
||||
unsigned long long Z3_API Z3_get_estimated_alloc_size(void) {
|
||||
__uint64 Z3_API Z3_get_estimated_alloc_size(void) {
|
||||
return memory::get_allocation_size();
|
||||
}
|
||||
|
||||
|
|
|
@ -5970,9 +5970,9 @@ extern "C" {
|
|||
/**
|
||||
\brief Return the estimated allocated memory in bytes.
|
||||
|
||||
def_API('Z3_get_estimated_alloc_size', ULLONG, ())
|
||||
def_API('Z3_get_estimated_alloc_size', UINT64, ())
|
||||
*/
|
||||
unsigned long long Z3_API Z3_get_estimated_alloc_size(void);
|
||||
__uint64 Z3_API Z3_get_estimated_alloc_size(void);
|
||||
|
||||
/*@}*/
|
||||
|
||||
|
|
Loading…
Reference in a new issue