update isl for change in isl_vertex inspectors
[barvinok.git] / omega_interface / Exit.cc
blob9591ecff21e37425d3ccf4471ada743d67259cab
1 #include <stdlib.h>
2 #include <basic/Exit.h>
4 namespace omega {
6 List<exit_func> Exit_hooks;
8 void Exit(int e)
10 foreach(func, exit_func, Exit_hooks, (*func)(e));
12 exit(e);