From 88a621e159177b5114ed13a509af9489cab543a5 Mon Sep 17 00:00:00 2001 From: Daniel Reinhold Date: Mon, 18 Nov 2002 07:45:26 +0000 Subject: [PATCH] call to raise() un-commented now that raise() is implemented git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2006 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/libroot/posix/stdlib/exit.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/kernel/libroot/posix/stdlib/exit.c b/src/kernel/libroot/posix/stdlib/exit.c index 057ef03525..87e08efb06 100644 --- a/src/kernel/libroot/posix/stdlib/exit.c +++ b/src/kernel/libroot/posix/stdlib/exit.c @@ -33,9 +33,6 @@ static int _Exit_SP = 0; void abort() { - // ToDo: uncomment the raise() call once it is implemented - - //raise(SIGABRT); exit(EXIT_FAILURE); }