1991-09-03 14:22:32 +00:00
|
|
|
#include <lib.h>
|
1991-09-03 15:11:18 +00:00
|
|
|
#include <unistd.h>
|
1989-10-26 11:51:46 +00:00
|
|
|
|
1991-09-03 14:22:32 +00:00
|
|
|
PUBLIC void _exit(status)
|
1989-10-26 11:51:46 +00:00
|
|
|
int status;
|
|
|
|
{
|
1991-09-03 14:22:32 +00:00
|
|
|
_callm1(MM, EXIT, status, 0, 0, NIL_PTR, NIL_PTR, NIL_PTR);
|
1989-10-26 11:51:46 +00:00
|
|
|
}
|