Files
Artem Dinaburg 86a6424d58 Find our local Z3 to build remill, even if its not in it usual spot (#420)
* Find our local Z3 to build remill, even if its not in it usual spot
2020-05-22 11:27:42 -04:00

9 lines
195 B
C++

#include <assert.h>
#include <z3.h>
int main() {
unsigned int major, minor, build, rev;
Z3_get_version(&major, &minor, &build, &rev);
printf("%u.%u.%u", major, minor, build);
return 0;
}