Now uses _kern_exit_team().

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10326 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2004-12-01 04:17:57 +00:00
parent a32c8f261f
commit 72013b22a5
+4 -4
View File
@@ -1,7 +1,7 @@
/*
** Copyright 2004, Axel Dörfler, [email protected]. All rights reserved.
** Distributed under the terms of the Haiku License.
*/
* Copyright 2004, Axel Dörfler, [email protected]. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#include <unistd.h>
@@ -18,6 +18,6 @@ _exit(int status)
_IO_cleanup();
// exit with status code
_kern_exit(status);
_kern_exit_team(status);
}