restructuring libc
[unix-history] / usr / src / lib / libc / stdlib / exit.c
CommitLineData
2ce81398
DS
1#if defined(LIBC_SCCS) && !defined(lint)
2static char sccsid[] = "@(#)exit.c 5.2 (Berkeley) %G%";
3#endif LIBC_SCCS and not lint
538e8d05
BJ
4
5exit(code)
6 int code;
7{
8
9 _cleanup();
10 _exit(code);
11}