xref: /csrg-svn/lib/libc/stdlib/exit.c (revision 22129)
1 #ifndef lint
2 static char sccsid[] = "@(#)exit.c	5.1 (Berkeley) 06/05/85";
3 #endif not lint
4 
5 exit(code)
6 	int code;
7 {
8 
9 	_cleanup();
10 	_exit(code);
11 }
12