aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/stdio/fclose.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdio/fclose.c')
-rw-r--r--newlib/libc/stdio/fclose.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libc/stdio/fclose.c b/newlib/libc/stdio/fclose.c
index 264d2e4..1c36057 100644
--- a/newlib/libc/stdio/fclose.c
+++ b/newlib/libc/stdio/fclose.c
@@ -56,8 +56,7 @@ Required OS subroutines: <<close>>, <<fstat>>, <<isatty>>, <<lseek>>,
#include "local.h"
int
-_DEFUN(_fclose_r, (rptr, fp),
- struct _reent *rptr,
+_fclose_r (struct _reent *rptr,
register FILE * fp)
{
int r;
@@ -121,8 +120,7 @@ _DEFUN(_fclose_r, (rptr, fp),
#ifndef _REENT_ONLY
int
-_DEFUN(fclose, (fp),
- register FILE * fp)
+fclose (register FILE * fp)
{
return _fclose_r(_REENT, fp);
}