aboutsummaryrefslogtreecommitdiff
path: root/stdlib/exit.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/exit.c')
-rw-r--r--stdlib/exit.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/stdlib/exit.c b/stdlib/exit.c
index f63dc1fdec..904c225336 100644
--- a/stdlib/exit.c
+++ b/stdlib/exit.c
@@ -56,6 +56,9 @@ exit (int status)
case ef_at:
(*f->func.at) ();
break;
+ case ef_cxa:
+ (*f->func.cxa.fn) (f->func.cxa.arg);
+ break;
}
}