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