1 /* closeout.c - close standard output
2 Copyright (C) 1998 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
24 # define _(Text) gettext (Text)
33 # define EXIT_FAILURE 1
45 /* Close standard output, exiting with status STATUS on failure. */
47 close_stdout_status (int status
)
50 error (status
, 0, _("write error"));
51 if (fclose (stdout
) != 0)
52 error (status
, errno
, _("write error"));
55 /* Close standard output, exiting with status EXIT_FAILURE on failure. */
59 close_stdout_status (EXIT_FAILURE
);