diff options
author | jamie <jamie@FreeBSD.org> | 2010-10-19 21:32:13 +0000 |
---|---|---|
committer | jamie <jamie@FreeBSD.org> | 2010-10-19 21:32:13 +0000 |
commit | 09f9c897d33c41618ada06fbbcf1a9b3812dee53 (patch) | |
tree | af2ff90c73b266b86d086d66705c8cc92cce3b7b /lib/libc/stdlib/_Exit.c | |
parent | 831bbfaf753dc145ab80d1807336d4fb9ef8dffe (diff) | |
download | FreeBSD-src-09f9c897d33c41618ada06fbbcf1a9b3812dee53.zip FreeBSD-src-09f9c897d33c41618ada06fbbcf1a9b3812dee53.tar.gz |
A new jail(8) with a configuration file, to replace the work currently done
by /etc/rc.d/jail.
Diffstat (limited to 'lib/libc/stdlib/_Exit.c')
-rw-r--r-- | lib/libc/stdlib/_Exit.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/lib/libc/stdlib/_Exit.c b/lib/libc/stdlib/_Exit.c deleted file mode 100644 index e7f0f51..0000000 --- a/lib/libc/stdlib/_Exit.c +++ /dev/null @@ -1,22 +0,0 @@ -/* - * This file is in the public domain. Written by Garrett A. Wollman, - * 2002-09-07. - * - * $FreeBSD$ - */ - -#include <stdlib.h> -#include <unistd.h> - -/* - * ISO C99 added this function to provide for Standard C applications - * which needed something like POSIX _exit(). A new interface was created - * in case it turned out that _exit() was insufficient to meet the - * requirements of ISO C. (That's probably not the case, but here - * is where you would put the extra code if it were.) - */ -void -_Exit(int code) -{ - _exit(code); -} |