xref: /openbsd-src/regress/sys/kern/exit/exit.c (revision 4006d63ad31f284fd33affeb94493e35cabac953)
1 /*	$OpenBSD: exit.c,v 1.1 2002/02/08 20:15:14 art Exp $	*/
2 /*
3  *	Written by Artur Grabowski <art@openbsd.org> 2002 Public Domain.
4  */
5 #include <stdlib.h>
6 
7 int
8 main()
9 {
10 	_exit(0);
11 	abort();
12 }
13