diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2004-04-28 18:02:38 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2004-04-28 18:02:38 +0000 |
commit | 6194cf4a4b63c4c7bf8b2ee12f1d9b033de22171 (patch) | |
tree | 155f0d9cf0422ad17644642d762bb788a2d84a8d /newlib/libc/stdio/local.h | |
parent | 4163fce83f1c7920b8370748c2212fc8dbe79925 (diff) | |
download | cygnal-6194cf4a4b63c4c7bf8b2ee12f1d9b033de22171.tar.gz cygnal-6194cf4a4b63c4c7bf8b2ee12f1d9b033de22171.tar.bz2 cygnal-6194cf4a4b63c4c7bf8b2ee12f1d9b033de22171.zip |
2004-04-28 Artem B. Bityuckiy <abitytsky@softminecorp.com>
* libc/stdio/local.h (_fwalk_reent): Specify prototype of
function pointer argument.
* libc/stdio/fwalk.c (_fwalk, _fwalk_reent): Change prototypes
to specify function pointer arguments.
(__fwalk, __fwalk_reent): Ditto.
Diffstat (limited to 'newlib/libc/stdio/local.h')
-rw-r--r-- | newlib/libc/stdio/local.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/stdio/local.h b/newlib/libc/stdio/local.h index 809bbc2d2..e3d5da573 100644 --- a/newlib/libc/stdio/local.h +++ b/newlib/libc/stdio/local.h @@ -41,7 +41,7 @@ extern _VOID _EXFUN(__sinit,(struct _reent *)); extern _VOID _EXFUN(_cleanup_r,(struct _reent *)); extern _VOID _EXFUN(__smakebuf,(FILE *)); extern int _EXFUN(_fwalk,(struct _reent *, int (*)(FILE *))); -extern int _EXFUN(_fwalk_reent,(struct _reent *, int (*)(FILE *))); +extern int _EXFUN(_fwalk_reent,(struct _reent *, int (*)(struct _reent *, FILE *))); struct _glue * _EXFUN(__sfmoreglue,(struct _reent *,int n)); extern int _EXFUN(__srefill,(FILE *fp)); |