summaryrefslogtreecommitdiff
path: root/libio/ioftell.c
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2018-12-27 19:01:57 +0000
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2018-12-27 19:01:57 +0000
commitcab56836b146bc129f1ad43f0393d95a9deca63a (patch)
tree4f4e655319bbac78fca170da05275c127429b460 /libio/ioftell.c
parent04ac1241a4cd004872282c2c82ec37fa33925292 (diff)
parent82dd75a7f436a19047325d62182590c9f9e23a78 (diff)
Merge branch 't/tls' into refs/top-bases/t/tls-threadvar
Diffstat (limited to 'libio/ioftell.c')
-rw-r--r--libio/ioftell.c14
1 files changed, 4 insertions, 10 deletions
diff --git a/libio/ioftell.c b/libio/ioftell.c
index a05693b2f6..571a648788 100644
--- a/libio/ioftell.c
+++ b/libio/ioftell.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1993-2016 Free Software Foundation, Inc.
+/* Copyright (C) 1993-2018 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -30,9 +30,9 @@
/* ANSI explicily requires setting errno to a positive value on failure. */
long int
-_IO_ftell (_IO_FILE *fp)
+_IO_ftell (FILE *fp)
{
- _IO_off64_t pos;
+ off64_t pos;
CHECK_FILE (fp, -1L);
_IO_acquire_lock (fp);
pos = _IO_seekoff_unlocked (fp, 0, _IO_seek_cur, 0);
@@ -44,23 +44,17 @@ _IO_ftell (_IO_FILE *fp)
_IO_release_lock (fp);
if (pos == _IO_pos_BAD)
{
-#ifdef EIO
if (errno == 0)
__set_errno (EIO);
-#endif
return -1L;
}
- if ((_IO_off64_t) (long int) pos != pos)
+ if ((off64_t) (long int) pos != pos)
{
-#ifdef EOVERFLOW
__set_errno (EOVERFLOW);
-#endif
return -1L;
}
return pos;
}
libc_hidden_def (_IO_ftell)
-#ifdef weak_alias
weak_alias (_IO_ftell, ftell)
-#endif