From daac2f633f49a45baa8412c5e4e71e594236e7b8 Mon Sep 17 00:00:00 2001 From: cvs2svn Date: Mon, 28 Jul 2008 23:44:12 +0000 Subject: This commit was manufactured by cvs2git to create tag 'pre_openssl_0_9_8h'. --- src/lib/libc/stdlib/_Exit.c | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 src/lib/libc/stdlib/_Exit.c (limited to 'src/lib/libc/stdlib/_Exit.c') diff --git a/src/lib/libc/stdlib/_Exit.c b/src/lib/libc/stdlib/_Exit.c deleted file mode 100644 index 5a2291a931..0000000000 --- a/src/lib/libc/stdlib/_Exit.c +++ /dev/null @@ -1,22 +0,0 @@ -/* $OpenBSD: _Exit.c,v 1.2 2005/08/08 08:05:36 espie Exp $ */ - -/* - * Placed in the public domain by Todd C. Miller on January 21, 2004. - */ - -#include -#include - -/* - * _Exit() is the ISO/ANSI C99 equivalent of the POSIX _exit() function. - * No atexit() handlers are called and no signal handlers are run. - * Whether or not stdio buffers are flushed or temporary files are removed - * is implementation-dependent. As such it is safest to *not* flush - * stdio buffers or remove temporary files. This is also consistent - * with most other implementations. - */ -void -_Exit(int status) -{ - _exit(status); -} -- cgit v1.2.3-55-g6feb