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/fsetpos.c')
-rw-r--r--newlib/libc/stdio/fsetpos.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libc/stdio/fsetpos.c b/newlib/libc/stdio/fsetpos.c
index d765081a6..b5334e251 100644
--- a/newlib/libc/stdio/fsetpos.c
+++ b/newlib/libc/stdio/fsetpos.c
@@ -59,8 +59,7 @@ Supporting OS subroutines required: <<close>>, <<fstat>>, <<isatty>>,
#include <stdio.h>
int
-_DEFUN(_fsetpos_r, (ptr, iop, pos),
- struct _reent * ptr,
+_fsetpos_r (struct _reent * ptr,
FILE * iop,
const _fpos_t * pos)
{
@@ -74,8 +73,7 @@ _DEFUN(_fsetpos_r, (ptr, iop, pos),
#ifndef _REENT_ONLY
int
-_DEFUN(fsetpos, (iop, pos),
- FILE * iop,
+fsetpos (FILE * iop,
const _fpos_t * pos)
{
return _fsetpos_r (_REENT, iop, pos);