blob: b4bed865f07836cf8015d58095ae96ce803d571a [file] [log] [blame]
Manuel Novoa III cad53642003-03-19 09:13:01 +00001/* vi: set sw=4 ts=4: */
2/*
3 * fflush_stdout_and_exit implementation for busybox
4 *
5 * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
6 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Manuel Novoa III cad53642003-03-19 09:13:01 +00008 */
9
10/* Attempt to fflush(stdout), and exit with an error code if stdout is
11 * in an error state.
12 */
13
Denis Vlasenkof0ed3762006-10-26 23:21:47 +000014#include "libbb.h"
Manuel Novoa III cad53642003-03-19 09:13:01 +000015
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000016void FAST_FUNC fflush_stdout_and_exit(int retval)
Manuel Novoa III cad53642003-03-19 09:13:01 +000017{
Denys Vlasenko550bf5b2015-10-09 16:42:57 +020018 xfunc_error_retval = retval;
Denis Vlasenko9b1381f2007-01-03 02:56:00 +000019 if (fflush(stdout))
Denis Vlasenko3952f202007-08-13 14:10:24 +000020 bb_perror_msg_and_die(bb_msg_standard_output);
Denys Vlasenko550bf5b2015-10-09 16:42:57 +020021 /* In case we are in NOFORK applet. Do not exit() directly,
22 * but use xfunc_die() */
23 xfunc_die();
Manuel Novoa III cad53642003-03-19 09:13:01 +000024}