repo.or.cz
/
barvinok.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
isl_obj_list.c: update to use of isl_printer
[barvinok.git]
/
omega_interface
/
Exit.cc
blob
9591ecff21e37425d3ccf4471ada743d67259cab
1
#include <stdlib.h>
2
#include <basic/Exit.h>
3
4
namespace
omega
{
5
6
List
<
exit_func
>
Exit_hooks
;
7
8
void
Exit
(
int
e
)
9
{
10
foreach
(
func
,
exit_func
,
Exit_hooks
, (*
func
)(
e
));
11
12
exit
(
e
);
13
}
14
15
}