xref: /original-bsd/lib/libc/stdlib/exit.c (revision 2301fdfb)
1 #if defined(LIBC_SCCS) && !defined(lint)
2 static char sccsid[] = "@(#)exit.c	5.2 (Berkeley) 03/09/86";
3 #endif LIBC_SCCS and not lint
4 
5 exit(code)
6 	int code;
7 {
8 
9 	_cleanup();
10 	_exit(code);
11 }
12