From ea7306d9b9043a5859ed5b1d6e146a5360ac2942 Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Tue, 2 Sep 2008 10:00:52 +0000 Subject: [PATCH] Be nice: Use the async-signal safe _exit() instead of exit(). [r21640] --- ir/be/test/fehler143.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ir/be/test/fehler143.c b/ir/be/test/fehler143.c index 2812fde2c..56e211dfc 100644 --- a/ir/be/test/fehler143.c +++ b/ir/be/test/fehler143.c @@ -1,6 +1,6 @@ #include #include -#include +#include void f(int x) { @@ -10,7 +10,7 @@ void f(int x) void handler(int sig) { (void)sig; - exit(0); + _exit(0); } int main(void) -- 2.20.1