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:
Diffstat (limited to 'newlib/libc/stdio/fwalk.c')
-rw-r--r--newlib/libc/stdio/fwalk.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libc/stdio/fwalk.c b/newlib/libc/stdio/fwalk.c
index 8b7b5b0e3..b4b285a64 100644
--- a/newlib/libc/stdio/fwalk.c
+++ b/newlib/libc/stdio/fwalk.c
@@ -28,8 +28,7 @@ static char sccsid[] = "%W% (Berkeley) %G%";
#include "local.h"
int
-_DEFUN(_fwalk, (ptr, function),
- struct _reent *ptr,
+_fwalk (struct _reent *ptr,
register int (*function) (FILE *))
{
register FILE *fp;
@@ -55,8 +54,7 @@ _DEFUN(_fwalk, (ptr, function),
/* Special version of __fwalk where the function pointer is a reentrant
I/O function (e.g. _fclose_r). */
int
-_DEFUN(_fwalk_reent, (ptr, reent_function),
- struct _reent *ptr,
+_fwalk_reent (struct _reent *ptr,
register int (*reent_function) (struct _reent *, FILE *))
{
register FILE *fp;