xref: /openbsd-src/regress/sys/kern/exit/exit.c (revision ce7e0fc6a9d74d25b78fb6ad846387717f5172b6)
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