From 6f82d0e8f9756938f04071892206a5af85e676f0 Mon Sep 17 00:00:00 2001 From: cvs2svn Date: Fri, 13 Jul 2012 17:49:56 +0000 Subject: This commit was manufactured by cvs2git to create tag 'eric_g2k12'. --- 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