move omega subdir to omega_interface
[barvinok.git] / omega_interface / Exit.cc
blob5df5fc3087e315b383b15d72468652d22177236c
1 #include <stdlib.h>
2 #include <basic/Exit.h>
4 List<exit_func> Exit_hooks;
6 void Exit(int e)
8 foreach(func, exit_func, Exit_hooks, (*func)(e));
10 exit(e);