xref: /csrg-svn/lib/libc/stdlib/exit.c (revision 26641)
1*26641Sdonn #if defined(LIBC_SCCS) && !defined(lint)
2*26641Sdonn static char sccsid[] = "@(#)exit.c	5.2 (Berkeley) 03/09/86";
3*26641Sdonn #endif LIBC_SCCS and not lint
413264Sroot 
513264Sroot exit(code)
613264Sroot 	int code;
713264Sroot {
813264Sroot 
913264Sroot 	_cleanup();
1013264Sroot 	_exit(code);
1113264Sroot }
12