aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/stdio/fseeko.c
diff options
context:
space:
mode:
authorYaakov Selkowitz <yselkowi@redhat.com>2017-12-03 22:52:13 -0600
committerYaakov Selkowitz <yselkowi@redhat.com>2018-01-17 11:47:27 -0600
commit77f16db546d9c214f639d1ea84c58d99f9e4d282 (patch)
tree38362015be02e1450ef8c2e83d66749e587f5455 /newlib/libc/stdio/fseeko.c
parent9087163804df8af6dc2ec1f675a2341c25f7795f (diff)
downloadnewlib-77f16db546d9c214f639d1ea84c58d99f9e4d282.zip
newlib-77f16db546d9c214f639d1ea84c58d99f9e4d282.tar.gz
newlib-77f16db546d9c214f639d1ea84c58d99f9e4d282.tar.bz2
ansification: remove _EXFNPTR, _EXPARM
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
Diffstat (limited to 'newlib/libc/stdio/fseeko.c')
-rw-r--r--newlib/libc/stdio/fseeko.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/stdio/fseeko.c b/newlib/libc/stdio/fseeko.c
index 7ca8616..3e0f9e9 100644
--- a/newlib/libc/stdio/fseeko.c
+++ b/newlib/libc/stdio/fseeko.c
@@ -98,7 +98,7 @@ _fseeko_r (struct _reent *ptr,
_off_t offset,
int whence)
{
- _fpos_t _EXFNPTR(seekfn, (struct _reent *, void *, _fpos_t, int));
+ _fpos_t (*seekfn) (struct _reent *, void *, _fpos_t, int);
_fpos_t target;
_fpos_t curoff = 0;
size_t n;