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
+3 -3
View File
@@ -1,6 +1,6 @@
/* /*
** Copyright 2004, Axel Dörfler, [email protected]. All rights reserved. * Copyright 2004, Axel Dörfler, [email protected]. All rights reserved.
** Distributed under the terms of the Haiku License. * Distributed under the terms of the MIT License.
*/ */
@@ -18,6 +18,6 @@ _exit(int status)
_IO_cleanup(); _IO_cleanup();
// exit with status code // exit with status code
_kern_exit(status); _kern_exit_team(status);
} }