2012-03-23 15:40:04 +05:30
|
|
|
#include <errno.h>
|
2013-02-21 00:44:29 +05:30
|
|
|
#ifdef HAVE_ERROR_H
|
|
|
|
# include <error.h>
|
|
|
|
#endif
|
2013-02-21 00:40:40 +05:30
|
|
|
#ifdef HAVE_STDIO_EXT_H
|
|
|
|
# include <stdio_ext.h>
|
|
|
|
#else
|
|
|
|
/* FIXME: use a more portable definition of __fpending() (from gnulib?) */
|
|
|
|
# include <stdio.h>
|
|
|
|
# define __fpending(fp) ((fp)->_p - (fp)->_bf._base)
|
|
|
|
#endif
|
2012-03-23 15:40:04 +05:30
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "nls.h"
|
2012-11-02 23:20:53 +05:30
|
|
|
#include "fileutils.h"
|
2013-02-21 00:44:29 +05:30
|
|
|
#ifndef HAVE_ERROR_H
|
|
|
|
# include "c.h" /* for error() emulation */
|
|
|
|
#endif
|
2012-03-23 15:40:04 +05:30
|
|
|
|
|
|
|
int close_stream(FILE * stream)
|
|
|
|
{
|
|
|
|
const int some_pending = (__fpending(stream) != 0);
|
|
|
|
const int prev_fail = (ferror(stream) != 0);
|
|
|
|
const int fclose_fail = (fclose(stream) != 0);
|
|
|
|
if (prev_fail || (fclose_fail && (some_pending || errno != EBADF))) {
|
2013-06-25 10:30:00 +05:30
|
|
|
if (!fclose_fail && errno != EPIPE)
|
2012-03-23 15:40:04 +05:30
|
|
|
errno = 0;
|
|
|
|
return EOF;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Use atexit(); */
|
|
|
|
void close_stdout(void)
|
|
|
|
{
|
|
|
|
if (close_stream(stdout) != 0 && !(errno == EPIPE)) {
|
|
|
|
char const *write_error = _("write error");
|
|
|
|
error(0, errno, "%s", write_error);
|
|
|
|
_exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (close_stream(stderr) != 0)
|
|
|
|
_exit(EXIT_FAILURE);
|
|
|
|
}
|