Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaakov Selkowitz <yselkowi@redhat.com>2017-12-04 07:52:13 +0300
committerYaakov Selkowitz <yselkowi@redhat.com>2018-01-17 20:47:27 +0300
commit77f16db546d9c214f639d1ea84c58d99f9e4d282 (patch)
tree38362015be02e1450ef8c2e83d66749e587f5455 /newlib/libc/stdio
parent9087163804df8af6dc2ec1f675a2341c25f7795f (diff)
ansification: remove _EXFNPTR, _EXPARM
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
Diffstat (limited to 'newlib/libc/stdio')
-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 7ca86161c..3e0f9e90b 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;