Pristine Ack-5.5
[Ack-5.5.git] / modules / src / system / stop.c
1 /*
2  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
3  * See the copyright notice in the ACK home directory, in the file "Copyright".
4  */
5 /* $Id: stop.c,v 1.5 1994/06/24 11:24:56 ceriel Exp $ */
6
7 #include <system.h>
8
9 void
10 sys_stop(how)
11         int how;
12 {
13         switch(how) {
14         case S_END:
15                 exit(0);
16         case S_EXIT:
17                 exit(1);
18         case S_ABORT:
19         default:
20                 abort();
21         }
22 }