Fix fseeko/ftello on cygwin 1.5.24.
[gnulib.git] / lib / ftello.c
1 /* An ftello() function that works around platform bugs.
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 along
15    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 #include <config.h>
19
20 /* Specification.  */
21 #include <stdio.h>
22
23 #undef ftello
24 #if !HAVE_FTELLO
25 # define ftello ftell
26 #endif
27
28 off_t
29 rpl_ftello (FILE *fp)
30 {
31 #if defined __SL64 && defined __SCLE /* Cygwin */
32   if ((fp->_flags & __SL64) == 0)
33     {
34       /* Cygwin 1.5.0 through 1.5.24 failed to open stdin in 64-bit
35          mode; but has an ftello that requires 64-bit mode.  */
36       FILE *tmp = fopen ("/dev/null", "r");
37       if (!tmp)
38         return -1;
39       fp->_flags |= __SL64;
40       fp->_seek64 = tmp->_seek64;
41       fclose (tmp);
42     }
43 #endif
44   return ftello (fp);
45 }