xref: /openbsd-src/regress/sys/kern/exit/exit.c (revision db3296cf5c1dd9058ceecc3a29fe4aaa0bd26000)
1 /*	$OpenBSD: exit.c,v 1.2 2003/07/31 21:48:08 deraadt Exp $	*/
2 /*
3  *	Written by Artur Grabowski <art@openbsd.org> 2002 Public Domain.
4  */
5 #include <stdlib.h>
6 
7 int
8 main(int argc, char *argv[])
9 {
10 	_exit(0);
11 	abort();
12 }
13