diff options
Diffstat (limited to 'newlib/libc/stdio/fseeko.c')
-rw-r--r-- | newlib/libc/stdio/fseeko.c | 2 |
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; |