1103165Swollman/*
2103165Swollman * This file is in the public domain.  Written by Garrett A. Wollman,
3103165Swollman * 2002-09-07.
4103165Swollman *
5103165Swollman * $FreeBSD$
6103165Swollman */
7103165Swollman
8103165Swollman#include <stdlib.h>
9103165Swollman#include <unistd.h>
10103165Swollman
11103165Swollman/*
12103165Swollman * ISO C99 added this function to provide for Standard C applications
13103165Swollman * which needed something like POSIX _exit().  A new interface was created
14103165Swollman * in case it turned out that _exit() was insufficient to meet the
15103165Swollman * requirements of ISO C.  (That's probably not the case, but here
16103165Swollman * is where you would put the extra code if it were.)
17103165Swollman */
18103165Swollmanvoid
19103165Swollman_Exit(int code)
20103165Swollman{
21103165Swollman	_exit(code);
22103165Swollman}
23