128 bit implementation of tanh.
[glibc.git] / libio / iofgetpos64.c
blob89e31fc72d66a2b3f9c2f4e92be7ab674e6f5c10
1 /* Copyright (C) 1993, 95, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
2 This file is part of the GNU IO Library.
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License as
6 published by the Free Software Foundation; either version 2, or (at
7 your option) any later version.
9 This library is distributed in the hope that it will be useful, but
10 WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this library; see the file COPYING. If not, write to
16 the Free Software Foundation, 59 Temple Place - Suite 330, Boston,
17 MA 02111-1307, USA.
19 As a special exception, if you link this library with files
20 compiled with a GNU compiler to produce an executable, this does
21 not cause the resulting executable to be covered by the GNU General
22 Public License. This exception does not however invalidate any
23 other reasons why the executable file might be covered by the GNU
24 General Public License. */
26 #include "libioP.h"
27 #include <errno.h>
28 #include <shlib-compat.h>
31 int
32 _IO_new_fgetpos64 (fp, posp)
33 _IO_FILE *fp;
34 _IO_fpos64_t *posp;
36 #ifdef _G_LSEEK64
37 _IO_off64_t pos;
38 CHECK_FILE (fp, EOF);
39 _IO_cleanup_region_start ((void (*) (void *)) _IO_funlockfile, fp);
40 _IO_flockfile (fp);
41 pos = _IO_seekoff (fp, 0, _IO_seek_cur, 0);
42 if (_IO_in_backup (fp))
43 pos -= fp->_IO_save_end - fp->_IO_save_base;
44 _IO_funlockfile (fp);
45 _IO_cleanup_region_end (0);
46 if (pos == _IO_pos_BAD)
48 /* ANSI explicitly requires setting errno to a positive value on
49 failure. */
50 # ifdef EIO
51 if (errno == 0)
52 __set_errno (EIO);
53 # endif
54 return EOF;
56 posp->__pos = pos;
57 if (fp->_mode > 0
58 && (*fp->_codecvt->__codecvt_do_encoding) (fp->_codecvt) < 0)
59 /* This is a stateful encoding, safe the state. */
60 posp->__state = fp->_wide_data->_IO_state;
61 return 0;
62 #else
63 __set_errno (ENOSYS);
64 return EOF;
65 #endif
68 strong_alias (_IO_new_fgetpos64, __new_fgetpos64)
69 versioned_symbol (libc, _IO_new_fgetpos64, _IO_fgetpos64, GLIBC_2_2);
70 versioned_symbol (libc, __new_fgetpos64, fgetpos64, GLIBC_2_2);