* lib/fflush.c: Fix missing include.
[gnulib.git] / lib / fflush.c
1 /* fflush.c -- allow flushing input streams
2    Copyright (C) 2007 Free Software Foundation, Inc.
3
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)
7    any later version.
8
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.
13
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
17
18 /* Written by Eric Blake. */
19
20 #include <config.h>
21
22 /* Specification.  */
23 #include <stdio.h>
24
25 #include <errno.h>
26 #include <unistd.h>
27
28 #include "fpurge.h"
29
30 #undef fflush
31
32 /* Flush all pending data on STREAM according to POSIX rules.  Both
33    output and seekable input streams are supported.  */
34 int
35 rpl_fflush (FILE *stream)
36 {
37   int result;
38   off_t pos;
39
40   /* Try flushing the stream.  C89 guarantees behavior of output
41      streams, so we only need to worry if failure might have been on
42      an input stream.  When stream is NULL, POSIX only requires
43      flushing of output streams.  */
44   result = fflush (stream);
45   if (! stream || result == 0 || errno != EBADF)
46     return result;
47
48   /* POSIX does not specify fflush behavior for non-seekable input
49      streams.  */
50   pos = ftello (stream);
51   if (pos == -1)
52     {
53       errno = EBADF;
54       return EOF;
55     }
56
57   /* To get here, we must be flushing a seekable input stream, so the
58      semantics of fpurge are now appropriate to clear the buffer.  To
59      avoid losing data, the lseek is also necessary.  */
60   result = fpurge (stream);
61   if (result == 0 && lseek (fileno (stream), pos, SEEK_SET) == -1)
62     return EOF;
63   return result;
64 }