Renamed thread/team syscalls to new scheme.

Tuned the license a bit.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6880 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2004-03-03 01:09:17 +00:00
parent 3d5b4968bd
commit 5be410a7cd
+10 -14
View File
@@ -1,17 +1,13 @@
/*
* Copyright (c) 2002, OpenBeOS Project.
* All rights reserved.
* Distributed under the terms of the OpenBeOS license.
*
*
* exit.c:
* implements the standard C library functions:
* abort, atexit, exit
*
*
* Author(s):
* Daniel Reinhold ([email protected])
*
** Copyright 2002-2004, The OpenBeOS Team. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
**
** Author(s): Daniel Reinhold ([email protected])
**
*/
/* implements the standard C library functions:
* abort, atexit, exit
*/
@@ -66,6 +62,6 @@ exit(int status)
_IO_cleanup();
// exit with status code
sys_exit(status);
_kern_exit(status);
}