From eb8dd9dca1228af0cd132f515509051ecfabf6f6 Mon Sep 17 00:00:00 2001 From: cvs2svn Date: Mon, 14 Apr 2025 17:32:06 +0000 Subject: This commit was manufactured by cvs2git to create tag 'tb_20250414'. --- 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 ccf64c2e87..0000000000 --- a/src/lib/libc/stdlib/_Exit.c +++ /dev/null @@ -1,22 +0,0 @@ -/* $OpenBSD: _Exit.c,v 1.3 2013/04/03 03:39:29 guenther 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 in C99. Indeed, POSIX specifies that - * _Exit() must *not* flush stdio buffers or remove temporary files, but - * rather must behave exactly like _exit() - */ -void -_Exit(int status) -{ - _exit(status); -} -- cgit v1.2.3-55-g6feb