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